diff options
author | Magnus Damm <damm@igel.co.jp> | 2008-12-25 18:17:34 +0900 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2009-01-27 14:49:10 +0900 |
commit | 69edbba0021a48fe034849501513930f6175cb5d (patch) | |
tree | 51499128883b2e84bce5dcaa78e6e943c37eeb40 /arch/sh/kernel/Makefile_32 | |
parent | 3292094e88ce6b76714dad8ec4b43d7c5c12ada2 (diff) | |
download | op-kernel-dev-69edbba0021a48fe034849501513930f6175cb5d.zip op-kernel-dev-69edbba0021a48fe034849501513930f6175cb5d.tar.gz |
sh: use gpiolib
This patch updates the SuperH gpio code to make use of gpiolib. The
gpiolib callbacks get() and set() are lockless, but we use our own
spinlock for the other operations to make sure hardware register
bitfield accesses stay atomic.
Signed-off-by: Magnus Damm <damm@igel.co.jp>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/kernel/Makefile_32')
-rw-r--r-- | arch/sh/kernel/Makefile_32 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sh/kernel/Makefile_32 b/arch/sh/kernel/Makefile_32 index 2e1b86e..7e7d22b 100644 --- a/arch/sh/kernel/Makefile_32 +++ b/arch/sh/kernel/Makefile_32 @@ -27,7 +27,7 @@ obj-$(CONFIG_CRASH_DUMP) += crash_dump.o obj-$(CONFIG_STACKTRACE) += stacktrace.o obj-$(CONFIG_IO_TRAPPED) += io_trapped.o obj-$(CONFIG_KPROBES) += kprobes.o -obj-$(CONFIG_GENERIC_GPIO) += gpio.o +obj-$(CONFIG_ARCH_REQUIRE_GPIOLIB) += gpio.o obj-$(CONFIG_DYNAMIC_FTRACE) += ftrace.o obj-$(CONFIG_DUMP_CODE) += disassemble.o |