cregit-Linux how code gets into the kernel

Release 4.16 sound/soc/soc-acpi.c

Directory: sound/soc
/*
 * soc-apci.c - support for ACPI enumeration.
 *
 * Copyright (c) 2013-15, Intel Corporation.
 *
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms and conditions of the GNU General Public License,
 * version 2, as published by the Free Software Foundation.
 *
 * This program is distributed in the hope 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 <sound/soc-acpi.h>


struct snd_soc_acpi_mach * snd_soc_acpi_find_machine(struct snd_soc_acpi_mach *machines) { struct snd_soc_acpi_mach *mach; for (mach = machines; mach->id[0]; mach++) { if (acpi_dev_present(mach->id, NULL, -1)) { if (mach->machine_quirk) mach = mach->machine_quirk(mach); return mach; } } return NULL; }

Contributors

PersonTokensPropCommitsCommitProp
Vinod Koul4156.94%120.00%
Naveen M1926.39%120.00%
Jeremy Cline68.33%120.00%
Pierre-Louis Bossart68.33%240.00%
Total72100.00%5100.00%

EXPORT_SYMBOL_GPL(snd_soc_acpi_find_machine);
static acpi_status snd_soc_acpi_find_package(acpi_handle handle, u32 level, void *context, void **ret) { struct acpi_device *adev; acpi_status status = AE_OK; struct snd_soc_acpi_package_context *pkg_ctx = context; pkg_ctx->data_valid = false; if (acpi_bus_get_device(handle, &adev)) return AE_OK; if (adev->status.present && adev->status.functional) { struct acpi_buffer buffer = {ACPI_ALLOCATE_BUFFER, NULL}; union acpi_object *myobj = NULL; status = acpi_evaluate_object_typed(handle, pkg_ctx->name, NULL, &buffer, ACPI_TYPE_PACKAGE); if (ACPI_FAILURE(status)) return AE_OK; myobj = buffer.pointer; if (!myobj || myobj->package.count != pkg_ctx->length) { kfree(buffer.pointer); return AE_OK; } status = acpi_extract_package(myobj, pkg_ctx->format, pkg_ctx->state); if (ACPI_FAILURE(status)) { kfree(buffer.pointer); return AE_OK; } kfree(buffer.pointer); pkg_ctx->data_valid = true; return AE_CTRL_TERMINATE; } return AE_OK; }

Contributors

PersonTokensPropCommitsCommitProp
Pierre-Louis Bossart204100.00%2100.00%
Total204100.00%2100.00%


bool snd_soc_acpi_find_package_from_hid(const u8 hid[ACPI_ID_LEN], struct snd_soc_acpi_package_context *ctx) { acpi_status status; status = acpi_get_devices(hid, snd_soc_acpi_find_package, ctx, NULL); if (ACPI_FAILURE(status) || !ctx->data_valid) return false; return true; }

Contributors

PersonTokensPropCommitsCommitProp
Pierre-Louis Bossart51100.00%2100.00%
Total51100.00%2100.00%

EXPORT_SYMBOL_GPL(snd_soc_acpi_find_package_from_hid);
struct snd_soc_acpi_mach *snd_soc_acpi_codec_list(void *arg) { struct snd_soc_acpi_mach *mach = arg; struct snd_soc_acpi_codecs *codec_list = (struct snd_soc_acpi_codecs *) mach->quirk_data; int i; if (mach->quirk_data == NULL) return mach; for (i = 0; i < codec_list->num_codecs; i++) { if (!acpi_dev_present(codec_list->codecs[i], NULL, -1)) return NULL; } return mach; }

Contributors

PersonTokensPropCommitsCommitProp
Naveen M7586.21%133.33%
Jeremy Cline78.05%133.33%
Pierre-Louis Bossart55.75%133.33%
Total87100.00%3100.00%

EXPORT_SYMBOL_GPL(snd_soc_acpi_codec_list); MODULE_LICENSE("GPL v2"); MODULE_DESCRIPTION("ALSA SoC ACPI module");

Overall Contributors

PersonTokensPropCommitsCommitProp
Pierre-Louis Bossart27662.30%337.50%
Naveen M9822.12%225.00%
Vinod Koul5612.64%225.00%
Jeremy Cline132.93%112.50%
Total443100.00%8100.00%
Directory: sound/soc
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.