diff options
author | Arnd Bergmann <arnd@arndb.de> | 2017-11-02 16:39:46 +0100 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2017-11-02 16:39:46 +0100 |
commit | da18392fd04d9579e1c11d8aefa80626a1763959 (patch) | |
tree | c57c163a21b28b98ecb976dcb630a1b56ea3495f /arch/arm/mach-omap1/board-h2.c | |
parent | ARM: multi_v7_defconfig: enable CONFIG_GPIO_UNIPHIER (diff) | |
parent | ARM: OMAP3: Delete an unnecessary variable initialisation in omap3xxx_hwmod_i... (diff) | |
download | linux-da18392fd04d9579e1c11d8aefa80626a1763959.tar.xz linux-da18392fd04d9579e1c11d8aefa80626a1763959.zip |
Merge tag 'omap-for-v4.15/coccinelle-signed' of ssh://gitolite.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap into next/soc
Pull "omap coccinelle warning fixes for v4.15 merge window" from Tony Lindgren:
Few coccinelle robot clean-up patches for careless human coding
issues for v4.15 merge window sent by their human operatorrrrrs.
* tag 'omap-for-v4.15/coccinelle-signed' of ssh://gitolite.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap:
ARM: OMAP3: Delete an unnecessary variable initialisation in omap3xxx_hwmod_init()
ARM: OMAP3: Use common error handling code in omap3xxx_hwmod_init()
ARM: omap1: add const and initconst to omap_lcd_config
Diffstat (limited to 'arch/arm/mach-omap1/board-h2.c')
-rw-r--r-- | arch/arm/mach-omap1/board-h2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-omap1/board-h2.c b/arch/arm/mach-omap1/board-h2.c index 6a38c7603064..ab51f8554697 100644 --- a/arch/arm/mach-omap1/board-h2.c +++ b/arch/arm/mach-omap1/board-h2.c @@ -357,7 +357,7 @@ static struct omap_usb_config h2_usb_config __initdata = { .pins[1] = 3, }; -static struct omap_lcd_config h2_lcd_config __initdata = { +static const struct omap_lcd_config h2_lcd_config __initconst = { .ctrl_name = "internal", }; |