Prev: perf_event: when events are grouped, the time enabled / running values are incorrect
Next: [PATCH 2/4] ibft: For UEFI machines actually do scan ACPI for iBFT.
From: Randy Dunlap on 11 May 2010 16:30 From: Randy Dunlap <randy.dunlap(a)oracle.com> Fix rdc321x-southbridge build: GPIO_RDC321X needs to select MFD_CORE so that the core is built at the same (or higher) tristate level. rdc321x-southbridge.c:(.devinit.text+0x6103): undefined reference to `mfd_add_devices' rdc321x-southbridge.c:(.devexit.text+0xe5f): undefined reference to `mfd_remove_devices' Signed-off-by: Randy Dunlap <randy.dunlap(a)oracle.com> Cc: Florian Fainelli <florian(a)openwrt.org> --- Who merges gpio patches? drivers/gpio/Kconfig | 1 + 1 file changed, 1 insertion(+) --- linux-next-20100511.orig/drivers/gpio/Kconfig +++ linux-next-20100511/drivers/gpio/Kconfig @@ -285,6 +285,7 @@ config GPIO_TIMBERDALE config GPIO_RDC321X tristate "RDC R-321x GPIO support" depends on PCI && GPIOLIB + select MFD_CORE select MFD_RDC321X help Support for the RDC R321x SoC GPIOs over southbridge -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ |