diff options
author | Michael Hennerich <michael.hennerich@analog.com> | 2009-07-02 11:00:38 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2009-07-16 01:52:32 -0400 |
commit | ebd5833327e3fb46eb55553d8f5432b5226bf897 (patch) | |
tree | 44a4e33f8fcaa1ad69da2ba7c87dfb0e58ce9a59 /arch/blackfin/mach-bf537 | |
parent | f1c717fbf89f5a24d539ecf4baa5d4c3888e3bf9 (diff) | |
download | kernel-crypto-ebd5833327e3fb46eb55553d8f5432b5226bf897.tar.gz kernel-crypto-ebd5833327e3fb46eb55553d8f5432b5226bf897.tar.xz kernel-crypto-ebd5833327e3fb46eb55553d8f5432b5226bf897.zip |
Blackfin: fix incomplete renaming of the bfin-twi-lcd driver
The sed used to rename the bfin-twi-lcd only replaced the first instance
rather than all which led to the resources not being enabled when the
driver was built as a module.
Signed-off-by: Michael Hennerich <michael.hennerich@analog.com>
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'arch/blackfin/mach-bf537')
-rw-r--r-- | arch/blackfin/mach-bf537/boards/stamp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/blackfin/mach-bf537/boards/stamp.c b/arch/blackfin/mach-bf537/boards/stamp.c index c1f76dd2c4e..ab92e42f891 100644 --- a/arch/blackfin/mach-bf537/boards/stamp.c +++ b/arch/blackfin/mach-bf537/boards/stamp.c @@ -1316,7 +1316,7 @@ static struct i2c_board_info __initdata bfin_i2c_board_info[] = { .irq = IRQ_PF5, }, #endif -#if defined(CONFIG_BFIN_TWI_LCD) || defined(CONFIG_TWI_LCD_MODULE) +#if defined(CONFIG_BFIN_TWI_LCD) || defined(CONFIG_BFIN_TWI_LCD_MODULE) { I2C_BOARD_INFO("pcf8574_lcd", 0x22), }, |