acpi_bus.h (f8bade6c9a6213c2c5ba6e5bf32415ecab6e41e5) acpi_bus.h (eb50aaf960e3bedfef79063411ffd670da94b84b)
1/* SPDX-License-Identifier: GPL-2.0-or-later */
2/*
3 * acpi_bus.h - ACPI Bus Driver ($Revision: 22 $)
4 *
5 * Copyright (C) 2001, 2002 Andy Grover <andrew.grover@intel.com>
6 * Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com>
7 */
8

--- 219 unchanged lines hidden (view full) ---

228 u32 hardware_id:1;
229 u32 bus_address:1;
230 u32 platform_id:1;
231 u32 reserved:29;
232};
233
234struct acpi_device_pnp {
235 acpi_bus_id bus_id; /* Object name */
1/* SPDX-License-Identifier: GPL-2.0-or-later */
2/*
3 * acpi_bus.h - ACPI Bus Driver ($Revision: 22 $)
4 *
5 * Copyright (C) 2001, 2002 Andy Grover <andrew.grover@intel.com>
6 * Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com>
7 */
8

--- 219 unchanged lines hidden (view full) ---

228 u32 hardware_id:1;
229 u32 bus_address:1;
230 u32 platform_id:1;
231 u32 reserved:29;
232};
233
234struct acpi_device_pnp {
235 acpi_bus_id bus_id; /* Object name */
236 int instance_no; /* Instance number of this object */
236 struct acpi_pnp_type type; /* ID type */
237 acpi_bus_address bus_address; /* _ADR */
238 char *unique_id; /* _UID */
239 struct list_head ids; /* _HID and _CIDs */
240 acpi_device_name device_name; /* Driver-determined */
241 acpi_device_class device_class; /* " */
242 union acpi_object *str_obj; /* unicode string for _STR method */
243};

--- 464 unchanged lines hidden ---
237 struct acpi_pnp_type type; /* ID type */
238 acpi_bus_address bus_address; /* _ADR */
239 char *unique_id; /* _UID */
240 struct list_head ids; /* _HID and _CIDs */
241 acpi_device_name device_name; /* Driver-determined */
242 acpi_device_class device_class; /* " */
243 union acpi_object *str_obj; /* unicode string for _STR method */
244};

--- 464 unchanged lines hidden ---