]> git.karo-electronics.de Git - linux-beck.git/commit
gpio / ACPI: Avoid unnecessary checks in __gpiod_get_index()
authorRafael J. Wysocki <rafael.j.wysocki@intel.com>
Tue, 10 Mar 2015 22:08:57 +0000 (23:08 +0100)
committerLinus Walleij <linus.walleij@linaro.org>
Thu, 19 Mar 2015 08:46:04 +0000 (09:46 +0100)
commit4d8440b93ce8a8544199804dbcf997b2ab3dad11
tree77458cfa065d39cc50c3be2801463d830fd07d36
parent964cb341882f920a1a1043864178f22def3193e4
gpio / ACPI: Avoid unnecessary checks in __gpiod_get_index()

If dev is NULL in __gpiod_get_index() and both ACPI and OF are
enabled, it will be checked twice before the code decides to give
up with DT/ACPI lookup, so avoid that.

Also use the observation that ACPI_COMPANION() is much more efficient
than ACPI_HANDLE(), because the latter uses the former and carries out
a check and a pointer dereference on top of it, so replace the
ACPI_HANDLE() check with an ACPI_COMPANION() one which does not
require the additional IS_ENABLED(CONFIG_ACPI) check too.

Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Reviewed-by: Hanjun Guo <hanjun.guo@linaro.org>
Acked-by: Mika Westerberg <mika.westerberg@linux.intel.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/gpio/gpiolib.c