cregit-Linux how code gets into the kernel

Release 4.17 drivers/acpi/acpica/nsdumpdv.c

// SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0
/******************************************************************************
 *
 * Module Name: nsdump - table dumping routines for debug
 *
 * Copyright (C) 2000 - 2018, Intel Corp.
 *
 *****************************************************************************/

#include <acpi/acpi.h>

/* TBD: This entire module is apparently obsolete and should be removed */


#define _COMPONENT          ACPI_NAMESPACE
ACPI_MODULE_NAME("nsdumpdv")
#ifdef ACPI_OBSOLETE_FUNCTIONS
#if defined(ACPI_DEBUG_OUTPUT) || defined(ACPI_DEBUGGER)
#include "acnamesp.h"
/*******************************************************************************
 *
 * FUNCTION:    acpi_ns_dump_one_device
 *
 * PARAMETERS:  handle              - Node to be dumped
 *              level               - Nesting level of the handle
 *              context             - Passed into walk_namespace
 *              return_value        - Not used
 *
 * RETURN:      Status
 *
 * DESCRIPTION: Dump a single Node that represents a device
 *              This procedure is a user_function called by acpi_ns_walk_namespace.
 *
 ******************************************************************************/

static acpi_status acpi_ns_dump_one_device(acpi_handle obj_handle, u32 level, void *context, void **return_value) { struct acpi_buffer buffer; struct acpi_device_info *info; acpi_status status; u32 i; ACPI_FUNCTION_NAME(ns_dump_one_device); status = acpi_ns_dump_one_object(obj_handle, level, context, return_value); buffer.length = ACPI_ALLOCATE_LOCAL_BUFFER; status = acpi_get_object_info(obj_handle, &buffer); if (ACPI_SUCCESS(status)) { info = buffer.pointer; for (i = 0; i < level; i++) { ACPI_DEBUG_PRINT_RAW((ACPI_DB_TABLES, " ")); } ACPI_DEBUG_PRINT_RAW((ACPI_DB_TABLES, " HID: %s, ADR: %8.8X%8.8X\n", info->hardware_id.value, ACPI_FORMAT_UINT64(info->address))); ACPI_FREE(info); } return (status); }

Contributors

PersonTokensPropCommitsCommitProp
Andy Grover11883.69%333.33%
Lv Zheng1812.77%111.11%
Robert Moore32.13%333.33%
Hans de Goede10.71%111.11%
Len Brown10.71%111.11%
Total141100.00%9100.00%

/******************************************************************************* * * FUNCTION: acpi_ns_dump_root_devices * * PARAMETERS: None * * RETURN: None * * DESCRIPTION: Dump all objects of type "device" * ******************************************************************************/
void acpi_ns_dump_root_devices(void) { acpi_handle sys_bus_handle; acpi_status status; ACPI_FUNCTION_NAME(ns_dump_root_devices); /* Only dump the table if tracing is enabled */ if (!(ACPI_LV_TABLES & acpi_dbg_level)) { return; } status = acpi_get_handle(NULL, METHOD_NAME__SB_, &sys_bus_handle); if (ACPI_FAILURE(status)) { return; } ACPI_DEBUG_PRINT((ACPI_DB_TABLES, "Display of all devices in the namespace:\n")); status = acpi_ns_walk_namespace(ACPI_TYPE_DEVICE, sys_bus_handle, ACPI_UINT32_MAX, ACPI_NS_WALK_NO_UNLOCK, acpi_ns_dump_one_device, NULL, NULL, NULL); }

Contributors

PersonTokensPropCommitsCommitProp
Andy Grover7792.77%116.67%
Robert Moore22.41%233.33%
Lin Ming22.41%116.67%
Mika Kukkonen11.20%116.67%
Len Brown11.20%116.67%
Total83100.00%6100.00%

#endif #endif

Overall Contributors

PersonTokensPropCommitsCommitProp
Andy Grover21883.52%422.22%
Lv Zheng186.90%15.56%
Robert Moore155.75%527.78%
Len Brown31.15%316.67%
Lin Ming20.77%15.56%
Erik Schmauss20.77%15.56%
Mika Kukkonen10.38%15.56%
Hans de Goede10.38%15.56%
Patrick Mochel10.38%15.56%
Total261100.00%18100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.