diff options
Diffstat (limited to 'include/acpi/acpi_bus.h')
| -rw-r--r-- | include/acpi/acpi_bus.h | 6 | 
1 files changed, 2 insertions, 4 deletions
diff --git a/include/acpi/acpi_bus.h b/include/acpi/acpi_bus.h index e65278f560c..22ba56e834e 100644 --- a/include/acpi/acpi_bus.h +++ b/include/acpi/acpi_bus.h @@ -437,11 +437,9 @@ void acpi_remove_dir(struct acpi_device *);   */  struct acpi_bus_type {  	struct list_head list; -	struct bus_type *bus; -	/* For general devices under the bus */ +	const char *name; +	bool (*match)(struct device *dev);  	int (*find_device) (struct device *, acpi_handle *); -	/* For bridges, such as PCI root bridge, IDE controller */ -	int (*find_bridge) (struct device *, acpi_handle *);  	void (*setup)(struct device *);  	void (*cleanup)(struct device *);  };  |