blob: 3bcf65ad4189f51068fc47be4b69482f730e53ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/* SPDX-License-Identifier: GPL-2.0-only */
#ifndef __DRIVERS_INTEL_ISH_CHIP_H__
#define __DRIVERS_INTEL_ISH_CHIP_H__
#include <stdbool.h>
/*
* Intel Integrated Sensor Hub (ISH)
*/
struct drivers_intel_ish_config {
/* Firmware name used by kernel for loading ISH firmware */
const char *firmware_name;
/* Add `DmaProperty` in _DSD */
bool add_acpi_dma_property;
};
#endif /* __DRIVERS_INTEL_ISH_CHIP_H__ */
|