Commit 7ae30986dc63d214cb075a40f2cf205f0a7806cd
1 parent
2f07a6134f
Exists in
smarc-l5.0.0_1.0.0-ga
and in
5 other branches
ACPI: fix acpi_bus.h build warnings when ACPI is not enabled
introduced in Linux-3.5-rc1 by 66886d6f8c9bcdee3d7fce5796dcffd6b4bc0b48 (ACPI: Add stubs for (un)register_acpi_bus_type) Fix header file warnings when CONFIG_ACPI is not enabled: include/acpi/acpi_bus.h:443:42: warning: 'struct acpi_bus_type' declared inside parameter list include/acpi/acpi_bus.h:443:42: warning: its scope is only this definition or declaration, which is probably not include/acpi/acpi_bus.h:444:44: warning: 'struct acpi_bus_type' declared inside parameter list Signed-off-by: Len Brown <len.brown@intel.com>
Showing 1 changed file with 2 additions and 2 deletions Side-by-side Diff
include/acpi/acpi_bus.h
... | ... | @@ -440,8 +440,8 @@ |
440 | 440 | |
441 | 441 | #else /* CONFIG_ACPI */ |
442 | 442 | |
443 | -static int register_acpi_bus_type(struct acpi_bus_type *bus) { return 0; } | |
444 | -static int unregister_acpi_bus_type(struct acpi_bus_type *bus) { return 0; } | |
443 | +static inline int register_acpi_bus_type(void *bus) { return 0; } | |
444 | +static inline int unregister_acpi_bus_type(void *bus) { return 0; } | |
445 | 445 | |
446 | 446 | #endif /* CONFIG_ACPI */ |
447 | 447 |