diff options
author | Scott Jiang <scott.jiang.linux@gmail.com> | 2012-08-14 11:59:31 -0400 |
---|---|---|
committer | Bob Liu <lliubbo@gmail.com> | 2012-10-08 14:36:29 +0800 |
commit | 57820b34690ab6c8b367d6b8b61c21a1fe99f867 (patch) | |
tree | adf557c1c2c2861586a2b194b3e676ddf0bb99cd | |
parent | 4563f2cc295e1094fc66e9d0cd9c5e4ea0616ae3 (diff) |
Blackfin: bf537: fix lq035 platform device name
Lq035 fb driver uses KBUILD_MODNAME which is bf537_lq035 instead of
bf537-lq035.
Signed-off-by: Scott Jiang <scott.jiang.linux@gmail.com>
Signed-off-by: Bob Liu <lliubbo@gmail.com>
-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 5ed654ae66e1..6acbead90fad 100644 --- a/arch/blackfin/mach-bf537/boards/stamp.c +++ b/arch/blackfin/mach-bf537/boards/stamp.c @@ -1525,7 +1525,7 @@ static struct platform_device bfin_sport_spi1_device = { #if defined(CONFIG_FB_BF537_LQ035) || defined(CONFIG_FB_BF537_LQ035_MODULE) static struct platform_device bfin_fb_device = { - .name = "bf537-lq035", + .name = "bf537_lq035", }; #endif |