/* * Copyright (C) 2013-15, Intel Corporation. All rights reserved. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License version * 2 as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * */ #include #include struct sst_acpi_package_context { char *name; /* package name */ int length; /* number of elements */ struct acpi_buffer *format; struct acpi_buffer *state; bool data_valid; }; #if IS_ENABLED(CONFIG_ACPI) /* translation fron HID to I2C name, needed for DAI codec_name */ const char *sst_acpi_find_name_from_hid(const u8 hid[ACPI_ID_LEN]); bool sst_acpi_find_package_from_hid(const u8 hid[ACPI_ID_LEN], struct sst_acpi_package_context *ctx); #else static inline const char *sst_acpi_find_name_from_hid(const u8 hid[ACPI_ID_LEN]) { return NULL; } static inline bool sst_acpi_find_package_from_hid(const u8 hid[ACPI_ID_LEN], struct sst_acpi_package_context *ctx) { return false; } #endif /* acpi match */ struct sst_acpi_mach *sst_acpi_find_machine(struct sst_acpi_mach *machines); /* Descriptor for SST ASoC machine driver */ struct sst_acpi_mach { /* ACPI ID for the matching machine driver. Audio codec for instance */ const u8 id[ACPI_ID_LEN]; /* machine driver name */ const char *drv_name; /* firmware file name */ const char *fw_filename; /* board name */ const char *board; struct sst_acpi_mach * (*machine_quirk)(void *arg); void *pdata; }; ogtreecommitdiff
diff options
context:
space:
mode:
authorAxel Haslam <ahaslam@baylibre.com>2016-11-03 12:11:42 +0100
committerMark Brown <broonie@kernel.org>2016-11-04 12:15:25 -0600
commit1b5b42216469b05ef4b5916cb40b127dfab1da88 (patch)
tree088f4074ec93c863025c27126c400f85009ad92a /include/uapi/scsi/fc/Kbuild
parent1001354ca34179f3db924eb66672442a173147dc (diff)
regulator: core: Add new API to poll for error conditions
Regulator consumers can receive event notifications when errors are reported to the driver, but currently, there is no way for a regulator consumer to know when the error is over. To allow a regulator consumer to poll for error conditions add a new API: regulator_get_error_flags. Signed-off-by: Axel Haslam <ahaslam@baylibre.com> Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'include/uapi/scsi/fc/Kbuild')