diff options
author | Arnd Bergmann <arnd@arndb.de> | 2013-03-11 21:52:28 +0100 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2013-03-11 21:52:57 +0100 |
commit | fc77b0e957c3e2e8234f0d815c44fb6053e4797a (patch) | |
tree | ad3228a866c4265e70bd109658431a7184a45d59 /arch | |
parent | 2a6ad871a10ce915a300d8f227168ad4c34936ec (diff) | |
parent | 4a38a8502b0ea4ecbe86f60e0b2416771c51888d (diff) | |
download | linux-stable-fc77b0e957c3e2e8234f0d815c44fb6053e4797a.tar.gz linux-stable-fc77b0e957c3e2e8234f0d815c44fb6053e4797a.tar.bz2 linux-stable-fc77b0e957c3e2e8234f0d815c44fb6053e4797a.zip |
Merge tag 'mxs-fixes-3.9-2' of git://git.linaro.org/people/shawnguo/linux-2.6 into fixes
From Shawn Guo <shawn.guo@linaro.org>:
The 2nd mxs fixes for 3.9:
- Fix an error caused by incorrect conflict resolution when
applying the patch
* tag 'mxs-fixes-3.9-2' of git://git.linaro.org/people/shawnguo/linux-2.6:
ARM: mxs: cfa10049: Fix fb initialisation function
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/mach-mxs/mach-mxs.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/arch/arm/mach-mxs/mach-mxs.c b/arch/arm/mach-mxs/mach-mxs.c index 052186713347..3218f1f2c0e0 100644 --- a/arch/arm/mach-mxs/mach-mxs.c +++ b/arch/arm/mach-mxs/mach-mxs.c @@ -402,17 +402,17 @@ static void __init cfa10049_init(void) { enable_clk_enet_out(); update_fec_mac_prop(OUI_CRYSTALFONTZ); + + mxsfb_pdata.mode_list = cfa10049_video_modes; + mxsfb_pdata.mode_count = ARRAY_SIZE(cfa10049_video_modes); + mxsfb_pdata.default_bpp = 32; + mxsfb_pdata.ld_intf_width = STMLCDIF_18BIT; } static void __init cfa10037_init(void) { enable_clk_enet_out(); update_fec_mac_prop(OUI_CRYSTALFONTZ); - - mxsfb_pdata.mode_list = cfa10049_video_modes; - mxsfb_pdata.mode_count = ARRAY_SIZE(cfa10049_video_modes); - mxsfb_pdata.default_bpp = 32; - mxsfb_pdata.ld_intf_width = STMLCDIF_18BIT; } static void __init apf28_init(void) |