]> git.baikalelectronics.ru Git - kernel.git/commit
MIPS: TXx9: use IS_BUILTIN() for CONFIG_LEDS_CLASS
authorMatt Redfearn <matt.redfearn@mips.com>
Mon, 29 Jan 2018 11:26:45 +0000 (11:26 +0000)
committerJames Hogan <jhogan@kernel.org>
Mon, 5 Feb 2018 13:32:17 +0000 (13:32 +0000)
commit0833626e86b4632c92ffef1e91e68783d9443ceb
tree78592fa5410294684d67f779b6e1a15efa933ca2
parent4c6c9b137d86f17310a703c0d5a973714ec61604
MIPS: TXx9: use IS_BUILTIN() for CONFIG_LEDS_CLASS

When commit f0ac7c0586a0 ("MIPS: TXx9: Add RBTX4939 board support")
added board support for the RBTX4939, it added a call to
led_classdev_register even if the LED class is built as a module.
Built-in arch code cannot call module code directly like this. Commit
fde036519f30 ("MIPS: TXX9: use IS_ENABLED() macro") subsequently
changed the inclusion of this code to a single check that
CONFIG_LEDS_CLASS is either builtin or a module, but the same issue
remains.

This leads to MIPS allmodconfig builds failing when CONFIG_MACH_TX49XX=y
is set:

arch/mips/txx9/rbtx4939/setup.o: In function `rbtx4939_led_probe':
setup.c:(.init.text+0xc0): undefined reference to `of_led_classdev_register'
make: *** [Makefile:999: vmlinux] Error 1

Fix this by using the IS_BUILTIN() macro instead.

Fixes: f0ac7c0586a0 ("MIPS: TXx9: Add RBTX4939 board support")
Signed-off-by: Matt Redfearn <matt.redfearn@mips.com>
Reviewed-by: James Hogan <jhogan@kernel.org>
Cc: Ralf Baechle <ralf@linux-mips.org>
Cc: linux-mips@linux-mips.org
Patchwork: https://patchwork.linux-mips.org/patch/18544/
Signed-off-by: James Hogan <jhogan@kernel.org>
arch/mips/txx9/rbtx4939/setup.c