diff options
author | Lukas Wunner <lukas@wunner.de> | 2016-03-24 13:15:20 +0100 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2016-04-09 03:12:58 +0200 |
commit | c68ae33e7fb4a010f9a48af3e4b87089dca96551 (patch) | |
tree | a692971cf4b6a9a36b81210d17e33d1107429f1a /include/linux/apple-gmux.h | |
parent | 9735a22799b9214d17d3c231fe377fc852f042e9 (diff) | |
download | linux-stable-c68ae33e7fb4a010f9a48af3e4b87089dca96551.tar.gz linux-stable-c68ae33e7fb4a010f9a48af3e4b87089dca96551.tar.bz2 linux-stable-c68ae33e7fb4a010f9a48af3e4b87089dca96551.zip |
ACPI / utils: Rename acpi_dev_present()
acpi_dev_present() was originally named after pci_dev_present()
to signify the similarity of the two functions.
However Rafael J. Wysocki pointed out that the exported function
acpi_dev_present() is easily confused with the non-exported
acpi_device_is_present(). Additionally in ACPI parlance the term
"present" usually refers to the "device is present" bit returned
by the _STA control method, yet acpi_dev_present() merely checks
presence in the namespace. It does not invoke _STA at all, let
alone check the "device is present" bit.
As suggested by Rafael, rename the function to acpi_dev_found()
and adjust all existing call sites.
Signed-off-by: Lukas Wunner <lukas@wunner.de>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'include/linux/apple-gmux.h')
-rw-r--r-- | include/linux/apple-gmux.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/apple-gmux.h b/include/linux/apple-gmux.h index b2d32e01dfe4..714186de8c36 100644 --- a/include/linux/apple-gmux.h +++ b/include/linux/apple-gmux.h @@ -35,7 +35,7 @@ */ static inline bool apple_gmux_present(void) { - return acpi_dev_present(GMUX_ACPI_HID); + return acpi_dev_found(GMUX_ACPI_HID); } #else /* !CONFIG_APPLE_GMUX */ |