]> git.baikalelectronics.ru Git - kernel.git/commit
driver-core: platform: Add platform_irq_count()
authorStephen Boyd <sboyd@codeaurora.org>
Thu, 7 Jan 2016 01:12:47 +0000 (17:12 -0800)
committerLinus Walleij <linus.walleij@linaro.org>
Thu, 7 Jan 2016 09:33:41 +0000 (10:33 +0100)
commit01f91e638b34e05d4d5a19fd2f24c3143f0f3a9b
treee162161d9ce05226ac09caffea6ad1e3308d3759
parentef07dd5c7f8d92d88db1d7b74725ec073778c0aa
driver-core: platform: Add platform_irq_count()

A recent patch added calls to of_irq_count() in the qcom pinctrl
drivers and that caused module build failures because
of_irq_count() is not an exported symbol. We shouldn't export
of_irq_count() to modules because it's an internal OF API that
shouldn't be used by drivers. Platform drivers should use
platform device APIs instead. Therefore, add a platform_irq_count()
API that mirrors the of_irq_count() API so that platform drivers
can stay DT agnostic.

Cc: Andy Gross <andy.gross@linaro.org>
Acked-by: Rob Herring <robh@kernel.org>
Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/base/platform.c
include/linux/platform_device.h