cregit-Linux how code gets into the kernel

Release 4.11 sound/soc/intel/common/sst-acpi.h

/*
 * 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 <linux/stddef.h>
#include <linux/acpi.h>


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; }

Contributors

PersonTokensPropCommitsCommitProp
Randy Dunlap19100.00%2100.00%
Total19100.00%2100.00%


static inline bool sst_acpi_find_package_from_hid(const u8 hid[ACPI_ID_LEN], struct sst_acpi_package_context *ctx) { return false; }

Contributors

PersonTokensPropCommitsCommitProp
Pierre-Louis Bossart22100.00%1100.00%
Total22100.00%1100.00%

#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; };

Overall Contributors

PersonTokensPropCommitsCommitProp
Pierre-Louis Bossart7944.89%228.57%
Vinod Koul6536.93%342.86%
Randy Dunlap3218.18%228.57%
Total176100.00%7100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.