mirror of
https://github.com/linux-msm/qdl.git
synced 2026-02-25 13:12:25 -08:00
Address all obvious coding style issues caught by checkpatch.pl tool. sha2.c and sha2.h were kept as there are. Signed-off-by: Igor Opaniuk <igor.opaniuk@oss.qualcomm.com>
16 lines
423 B
C
16 lines
423 B
C
/* SPDX-License-Identifier: BSD-3-Clause */
|
|
/*
|
|
* Copyright (c) 2025, Qualcomm Innovation Center, Inc. All rights reserved.
|
|
*/
|
|
#ifndef __SIM_H__
|
|
#define __SIM_H__
|
|
|
|
#include "qdl.h"
|
|
#include "vip.h"
|
|
|
|
struct vip_table_generator *sim_get_vip_generator(struct qdl_device *qdl);
|
|
bool sim_set_digest_generation(bool create_digests, struct qdl_device *qdl,
|
|
struct vip_table_generator *vip_gen);
|
|
|
|
#endif /* __SIM_H__ */
|