* [PATCH 0/7] More omap2+ randconfig fixes
@ 2012-02-24 0:54 Tony Lindgren
2012-02-24 0:54 ` [PATCH 1/7] ARM: OMAP2+: Fix Kconfig dependencies for USB_ARCH_HAS_EHCI Tony Lindgren
` (6 more replies)
0 siblings, 7 replies; 10+ messages in thread
From: Tony Lindgren @ 2012-02-24 0:54 UTC (permalink / raw)
To: linux-arm-kernel; +Cc: linux-omap
Hi all,
Here are some more omap2+ randconfig related fixes for review.
Regards,
Tony
---
Tony Lindgren (7):
ARM: OMAP2+: Fix Kconfig dependencies for USB_ARCH_HAS_EHCI
ARM: OMAP2+: Fix OMAP_HDQ_BASE build error
ARM: OMAP2+: Fix board_mux section type conflict when OMAP_MUX is not set
ARM: OMAP2+: Fix zoom LCD backlight if TWL_CORE is not selected
ARM: OMAP2+: Fix devexit for smartreflex when CONFIG_HOTPLUG is not set
ARM: OMAP: Fix devexit for dma when CONFIG_HOTPLUG is not set
ARM: OMAP2+: Fix multiple randconfig errors with SOC_OMAP and SOC_OMAP_NOOP
arch/arm/Makefile | 4 +-
arch/arm/mach-omap2/Kconfig | 55 ++++++++++++++++++++----------
arch/arm/mach-omap2/board-zoom-display.c | 6 +++
arch/arm/mach-omap2/devices.c | 7 ++--
arch/arm/mach-omap2/mux.h | 2 +
arch/arm/mach-omap2/smartreflex.c | 2 +
arch/arm/plat-omap/dma.c | 2 +
7 files changed, 50 insertions(+), 28 deletions(-)
--
Signature
^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH 1/7] ARM: OMAP2+: Fix Kconfig dependencies for USB_ARCH_HAS_EHCI
2012-02-24 0:54 [PATCH 0/7] More omap2+ randconfig fixes Tony Lindgren
@ 2012-02-24 0:54 ` Tony Lindgren
2012-02-24 0:54 ` [PATCH 2/7] ARM: OMAP2+: Fix OMAP_HDQ_BASE build error Tony Lindgren
` (5 subsequent siblings)
6 siblings, 0 replies; 10+ messages in thread
From: Tony Lindgren @ 2012-02-24 0:54 UTC (permalink / raw)
To: linux-arm-kernel; +Cc: linux-omap
Otherwise we get:
warning: (ARCH_OMAP3 && ARCH_OMAP4) selects USB_ARCH_HAS_EHCI
which has unmet direct dependencies (USB_SUPPORT)
Signed-off-by: Tony Lindgren <tony@atomide.com>
---
arch/arm/mach-omap2/Kconfig | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/arch/arm/mach-omap2/Kconfig b/arch/arm/mach-omap2/Kconfig
index d965da4..337f98d 100644
--- a/arch/arm/mach-omap2/Kconfig
+++ b/arch/arm/mach-omap2/Kconfig
@@ -32,7 +32,7 @@ config ARCH_OMAP3
depends on ARCH_OMAP2PLUS
default y
select CPU_V7
- select USB_ARCH_HAS_EHCI
+ select USB_ARCH_HAS_EHCI if USB_SUPPORT
select ARCH_HAS_OPP
select PM_OPP if PM
select ARM_CPU_SUSPEND if PM
@@ -52,7 +52,7 @@ config ARCH_OMAP4
select ARM_ERRATA_720789
select ARCH_HAS_OPP
select PM_OPP if PM
- select USB_ARCH_HAS_EHCI
+ select USB_ARCH_HAS_EHCI if USB_SUPPORT
select ARM_CPU_SUSPEND if PM
comment "OMAP Core Type"
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH 2/7] ARM: OMAP2+: Fix OMAP_HDQ_BASE build error
2012-02-24 0:54 [PATCH 0/7] More omap2+ randconfig fixes Tony Lindgren
2012-02-24 0:54 ` [PATCH 1/7] ARM: OMAP2+: Fix Kconfig dependencies for USB_ARCH_HAS_EHCI Tony Lindgren
@ 2012-02-24 0:54 ` Tony Lindgren
2012-02-24 0:54 ` [PATCH 3/7] ARM: OMAP2+: Fix board_mux section type conflict when OMAP_MUX is not set Tony Lindgren
` (4 subsequent siblings)
6 siblings, 0 replies; 10+ messages in thread
From: Tony Lindgren @ 2012-02-24 0:54 UTC (permalink / raw)
To: linux-arm-kernel; +Cc: linux-omap
If CONFIG_SOC_OMAP3430 is not set and CONFIG_HDQ_MASTER_OMAP
is selected for w1 driver we get the following error:
arch/arm/mach-omap2/devices.c:662:13: error:
'OMAP_HDQ_BASE' undeclared here (not in a function)
Looks like OMAP_HDQ_BASE is valid for all omaps except
2420, so we can remove the ifdef and not register
the device on 2420.
Signed-off-by: Tony Lindgren <tony@atomide.com>
---
arch/arm/mach-omap2/devices.c | 7 ++++---
1 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/arch/arm/mach-omap2/devices.c b/arch/arm/mach-omap2/devices.c
index 283d11e..3ffefe2 100644
--- a/arch/arm/mach-omap2/devices.c
+++ b/arch/arm/mach-omap2/devices.c
@@ -654,9 +654,7 @@ void __init omap242x_init_mmc(struct omap_mmc_platform_data **mmc_data)
/*-------------------------------------------------------------------------*/
#if defined(CONFIG_HDQ_MASTER_OMAP) || defined(CONFIG_HDQ_MASTER_OMAP_MODULE)
-#if defined(CONFIG_SOC_OMAP2430) || defined(CONFIG_SOC_OMAP3430)
#define OMAP_HDQ_BASE 0x480B2000
-#endif
static struct resource omap_hdq_resources[] = {
{
.start = OMAP_HDQ_BASE,
@@ -679,7 +677,10 @@ static struct platform_device omap_hdq_dev = {
};
static inline void omap_hdq_init(void)
{
- (void) platform_device_register(&omap_hdq_dev);
+ if (cpu_is_omap2420())
+ return;
+
+ platform_device_register(&omap_hdq_dev);
}
#else
static inline void omap_hdq_init(void) {}
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH 3/7] ARM: OMAP2+: Fix board_mux section type conflict when OMAP_MUX is not set
2012-02-24 0:54 [PATCH 0/7] More omap2+ randconfig fixes Tony Lindgren
2012-02-24 0:54 ` [PATCH 1/7] ARM: OMAP2+: Fix Kconfig dependencies for USB_ARCH_HAS_EHCI Tony Lindgren
2012-02-24 0:54 ` [PATCH 2/7] ARM: OMAP2+: Fix OMAP_HDQ_BASE build error Tony Lindgren
@ 2012-02-24 0:54 ` Tony Lindgren
2012-02-24 0:54 ` [PATCH 4/7] ARM: OMAP2+: Fix zoom LCD backlight if TWL_CORE is not selected Tony Lindgren
` (3 subsequent siblings)
6 siblings, 0 replies; 10+ messages in thread
From: Tony Lindgren @ 2012-02-24 0:54 UTC (permalink / raw)
To: linux-arm-kernel; +Cc: linux-omap
Otherwise we can get:
arch/arm/mach-omap2/mux.h:249:31: error: board_mux causes a section type conflict
Signed-off-by: Tony Lindgren <tony@atomide.com>
---
arch/arm/mach-omap2/mux.h | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/arch/arm/mach-omap2/mux.h b/arch/arm/mach-omap2/mux.h
index 2132308..69fe060 100644
--- a/arch/arm/mach-omap2/mux.h
+++ b/arch/arm/mach-omap2/mux.h
@@ -246,7 +246,7 @@ static inline void omap_hwmod_mux(struct omap_hwmod_mux_info *hmux, u8 state)
{
}
-static struct omap_board_mux *board_mux __initdata __maybe_unused;
+static struct omap_board_mux *board_mux __maybe_unused;
#endif
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH 4/7] ARM: OMAP2+: Fix zoom LCD backlight if TWL_CORE is not selected
2012-02-24 0:54 [PATCH 0/7] More omap2+ randconfig fixes Tony Lindgren
` (2 preceding siblings ...)
2012-02-24 0:54 ` [PATCH 3/7] ARM: OMAP2+: Fix board_mux section type conflict when OMAP_MUX is not set Tony Lindgren
@ 2012-02-24 0:54 ` Tony Lindgren
2012-02-24 11:53 ` Sergei Shtylyov
2012-02-24 0:54 ` [PATCH 5/7] ARM: OMAP2+: Fix devexit for smartreflex when CONFIG_HOTPLUG is not set Tony Lindgren
` (2 subsequent siblings)
6 siblings, 1 reply; 10+ messages in thread
From: Tony Lindgren @ 2012-02-24 0:54 UTC (permalink / raw)
To: linux-arm-kernel; +Cc: linux-omap
Otherwise we get:
arch/arm/mach-omap2/board-zoom-display.c:64: undefined reference to `twl_i2c_read_u8'
arch/arm/mach-omap2/board-zoom-display.c:65: undefined reference to `twl_i2c_read_u8'
arch/arm/mach-omap2/board-zoom-display.c:84: undefined reference to `twl_i2c_write_u8'
arch/arm/mach-omap2/board-zoom-display.c:86: undefined reference to `twl_i2c_write_u8'
arch/arm/mach-omap2/board-zoom-display.c:91: undefined reference to `twl_i2c_write_u8'
arch/arm/mach-omap2/board-zoom-display.c:92: undefined reference to `twl_i2c_write_u8'
arch/arm/mach-omap2/board-zoom-display.c:72: undefined reference to `twl_i2c_write_u8'
Signed-off-by: Tony Lindgren <tony@atomide.com>
---
arch/arm/mach-omap2/board-zoom-display.c | 6 ++++++
1 files changed, 6 insertions(+), 0 deletions(-)
diff --git a/arch/arm/mach-omap2/board-zoom-display.c b/arch/arm/mach-omap2/board-zoom-display.c
index d4683ba..7f75fcd 100644
--- a/arch/arm/mach-omap2/board-zoom-display.c
+++ b/arch/arm/mach-omap2/board-zoom-display.c
@@ -53,8 +53,11 @@ static void zoom_panel_disable_lcd(struct omap_dss_device *dssdev)
#define TWL_LED_PWMON 0x0
#define TWL_LED_PWMOFF 0x1
+
static int zoom_set_bl_intensity(struct omap_dss_device *dssdev, int level)
{
+
+#ifdef CONFIG_TWL4030_CORE
unsigned char c;
u8 mux_pwm, enb_pwm;
@@ -90,6 +93,9 @@ static int zoom_set_bl_intensity(struct omap_dss_device *dssdev, int level)
c = ((50 * (100 - level)) / 100) + 1;
twl_i2c_write_u8(TWL4030_MODULE_PWM1, 0x7F, TWL_LED_PWMOFF);
twl_i2c_write_u8(TWL4030_MODULE_PWM1, c, TWL_LED_PWMON);
+#else
+ pr_warn("Backlight not enabled\n");
+#endif
return 0;
}
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH 5/7] ARM: OMAP2+: Fix devexit for smartreflex when CONFIG_HOTPLUG is not set
2012-02-24 0:54 [PATCH 0/7] More omap2+ randconfig fixes Tony Lindgren
` (3 preceding siblings ...)
2012-02-24 0:54 ` [PATCH 4/7] ARM: OMAP2+: Fix zoom LCD backlight if TWL_CORE is not selected Tony Lindgren
@ 2012-02-24 0:54 ` Tony Lindgren
2012-02-24 0:54 ` [PATCH 6/7] ARM: OMAP: Fix devexit for dma " Tony Lindgren
2012-02-24 0:54 ` [PATCH 7/7] ARM: OMAP2+: Fix multiple randconfig errors with SOC_OMAP and SOC_OMAP_NOOP Tony Lindgren
6 siblings, 0 replies; 10+ messages in thread
From: Tony Lindgren @ 2012-02-24 0:54 UTC (permalink / raw)
To: linux-arm-kernel; +Cc: linux-omap
Otherwise we get:
`omap_sr_remove' referenced in section `.data' of arch/arm/mach-omap2/built-in.o:
defined in discarded section `.devexit.text' of arch/arm/mach-omap2/built-in.o
Signed-off-by: Tony Lindgren <tony@atomide.com>
---
arch/arm/mach-omap2/smartreflex.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/arch/arm/mach-omap2/smartreflex.c b/arch/arm/mach-omap2/smartreflex.c
index 7e755bb..47c77a1 100644
--- a/arch/arm/mach-omap2/smartreflex.c
+++ b/arch/arm/mach-omap2/smartreflex.c
@@ -1012,7 +1012,7 @@ static int __devexit omap_sr_remove(struct platform_device *pdev)
}
static struct platform_driver smartreflex_driver = {
- .remove = omap_sr_remove,
+ .remove = __devexit_p(omap_sr_remove),
.driver = {
.name = "smartreflex",
},
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH 6/7] ARM: OMAP: Fix devexit for dma when CONFIG_HOTPLUG is not set
2012-02-24 0:54 [PATCH 0/7] More omap2+ randconfig fixes Tony Lindgren
` (4 preceding siblings ...)
2012-02-24 0:54 ` [PATCH 5/7] ARM: OMAP2+: Fix devexit for smartreflex when CONFIG_HOTPLUG is not set Tony Lindgren
@ 2012-02-24 0:54 ` Tony Lindgren
2012-02-24 0:54 ` [PATCH 7/7] ARM: OMAP2+: Fix multiple randconfig errors with SOC_OMAP and SOC_OMAP_NOOP Tony Lindgren
6 siblings, 0 replies; 10+ messages in thread
From: Tony Lindgren @ 2012-02-24 0:54 UTC (permalink / raw)
To: linux-arm-kernel; +Cc: linux-omap
Otherwise we get:
`omap_system_dma_remove' referenced in section `.data' of arch/arm/plat-omap/built-in.o:
defined in discarded section `.devexit.text' of arch/arm/plat-omap/built-in.o
Signed-off-by: Tony Lindgren <tony@atomide.com>
---
arch/arm/plat-omap/dma.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/arch/arm/plat-omap/dma.c b/arch/arm/plat-omap/dma.c
index 002fb4d..cb856fe 100644
--- a/arch/arm/plat-omap/dma.c
+++ b/arch/arm/plat-omap/dma.c
@@ -2125,7 +2125,7 @@ static int __devexit omap_system_dma_remove(struct platform_device *pdev)
static struct platform_driver omap_system_dma_driver = {
.probe = omap_system_dma_probe,
- .remove = omap_system_dma_remove,
+ .remove = __devexit_p(omap_system_dma_remove),
.driver = {
.name = "omap_dma_system"
},
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH 7/7] ARM: OMAP2+: Fix multiple randconfig errors with SOC_OMAP and SOC_OMAP_NOOP
2012-02-24 0:54 [PATCH 0/7] More omap2+ randconfig fixes Tony Lindgren
` (5 preceding siblings ...)
2012-02-24 0:54 ` [PATCH 6/7] ARM: OMAP: Fix devexit for dma " Tony Lindgren
@ 2012-02-24 0:54 ` Tony Lindgren
6 siblings, 0 replies; 10+ messages in thread
From: Tony Lindgren @ 2012-02-24 0:54 UTC (permalink / raw)
To: linux-arm-kernel; +Cc: Russell King, linux-omap
If we don't have ARCH_OMAP2, 3 or 4 selected randconfig will always
fail with multiple errors as the CPU and MACHINE are not set.
Fix this by changing arch/arm/Makefile to build mach-omap2 based on
ARCH_OMAP2PLUS. And let's introduce SOC_OMAP and SOC_OMAP_NOOP that
allow randconfig to generate buildable .config files.
Note that we can also remove few uncecssary ARCH_OMAP2PLUS lines
as they are all within if ARCH_OMAP2PLUS block.
Cc: Russell King <rmk+kernel@arm.linux.org.uk>
Signed-off-by: Tony Lindgren <tony@atomide.com>
---
arch/arm/Makefile | 4 +--
arch/arm/mach-omap2/Kconfig | 51 +++++++++++++++++++++++++++++--------------
2 files changed, 35 insertions(+), 20 deletions(-)
diff --git a/arch/arm/Makefile b/arch/arm/Makefile
index 1683bfb..ea69448 100644
--- a/arch/arm/Makefile
+++ b/arch/arm/Makefile
@@ -164,9 +164,7 @@ machine-$(CONFIG_ARCH_MXS) := mxs
machine-$(CONFIG_ARCH_NETX) := netx
machine-$(CONFIG_ARCH_NOMADIK) := nomadik
machine-$(CONFIG_ARCH_OMAP1) := omap1
-machine-$(CONFIG_ARCH_OMAP2) := omap2
-machine-$(CONFIG_ARCH_OMAP3) := omap2
-machine-$(CONFIG_ARCH_OMAP4) := omap2
+machine-$(CONFIG_ARCH_OMAP2PLUS) := omap2
machine-$(CONFIG_ARCH_ORION5X) := orion5x
machine-$(CONFIG_ARCH_PICOXCELL) := picoxcell
machine-$(CONFIG_ARCH_PNX4008) := pnx4008
diff --git a/arch/arm/mach-omap2/Kconfig b/arch/arm/mach-omap2/Kconfig
index 337f98d..c4ae0a7 100644
--- a/arch/arm/mach-omap2/Kconfig
+++ b/arch/arm/mach-omap2/Kconfig
@@ -21,16 +21,12 @@ config ARCH_OMAP2PLUS_TYPICAL
Compile a kernel suitable for booting most boards
config ARCH_OMAP2
- bool "TI OMAP2"
- depends on ARCH_OMAP2PLUS
- default y
+ bool
select CPU_V6
select MULTI_IRQ_HANDLER
config ARCH_OMAP3
- bool "TI OMAP3"
- depends on ARCH_OMAP2PLUS
- default y
+ bool
select CPU_V7
select USB_ARCH_HAS_EHCI if USB_SUPPORT
select ARCH_HAS_OPP
@@ -39,9 +35,7 @@ config ARCH_OMAP3
select MULTI_IRQ_HANDLER
config ARCH_OMAP4
- bool "TI OMAP4"
- default y
- depends on ARCH_OMAP2PLUS
+ bool
select CACHE_L2X0
select CPU_V7
select ARM_GIC
@@ -56,36 +50,58 @@ config ARCH_OMAP4
select ARM_CPU_SUSPEND if PM
comment "OMAP Core Type"
- depends on ARCH_OMAP2
+
+config SOC_OMAP
+ bool
config SOC_OMAP2420
bool "OMAP2420 support"
- depends on ARCH_OMAP2
default y
+ select SOC_OMAP
+ select ARCH_OMAP2
select OMAP_DM_TIMER
select ARCH_OMAP_OTG
config SOC_OMAP2430
bool "OMAP2430 support"
- depends on ARCH_OMAP2
default y
+ select SOC_OMAP
+ select ARCH_OMAP2
select ARCH_OMAP_OTG
config SOC_OMAP3430
bool "OMAP3430 support"
- depends on ARCH_OMAP3
default y
+ select SOC_OMAP
+ select ARCH_OMAP3
select ARCH_OMAP_OTG
config SOC_OMAPTI81XX
bool "TI81XX support"
- depends on ARCH_OMAP3
default y
+ select SOC_OMAP
+ select ARCH_OMAP3
config SOC_OMAPAM33XX
bool "AM33XX support"
- depends on ARCH_OMAP3
default y
+ select SOC_OMAP
+ select ARCH_OMAP3
+
+config SOC_OMAP44XX
+ bool "OMAP44XX support"
+ default y
+ select SOC_OMAP
+ select ARCH_OMAP4
+
+config SOC_OMAP_NOOP
+ bool
+ depends on !SOC_OMAP
+ default y
+ select ARCH_OMAP2
+ select ARCH_OMAP3
+ select ARCH_OMAP4
+ select MACH_OMAP_GENERIC
config OMAP_PACKAGE_ZAF
bool
@@ -112,17 +128,17 @@ config OMAP_PACKAGE_CBS
bool
comment "OMAP Board Type"
- depends on ARCH_OMAP2PLUS
config MACH_OMAP_GENERIC
bool "Generic OMAP2+ board"
- depends on ARCH_OMAP2PLUS
select USE_OF
default y
help
Support for generic TI OMAP2+ boards using Flattened Device Tree.
More information at Documentation/devicetree
+if SOC_OMAP
+
config MACH_OMAP2_TUSB6010
bool
depends on ARCH_OMAP2 && SOC_OMAP2420
@@ -343,6 +359,7 @@ config MACH_OMAP4_PANDA
select OMAP_PACKAGE_CBS
select REGULATOR_FIXED_VOLTAGE if REGULATOR
+endif
config OMAP3_EMU
bool "OMAP3 debugging peripherals"
depends on ARCH_OMAP3
^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [PATCH 4/7] ARM: OMAP2+: Fix zoom LCD backlight if TWL_CORE is not selected
2012-02-24 0:54 ` [PATCH 4/7] ARM: OMAP2+: Fix zoom LCD backlight if TWL_CORE is not selected Tony Lindgren
@ 2012-02-24 11:53 ` Sergei Shtylyov
2012-02-24 16:25 ` Tony Lindgren
0 siblings, 1 reply; 10+ messages in thread
From: Sergei Shtylyov @ 2012-02-24 11:53 UTC (permalink / raw)
To: Tony Lindgren; +Cc: linux-arm-kernel, linux-omap
Hello.
On 24-02-2012 4:54, Tony Lindgren wrote:
> Otherwise we get:
> arch/arm/mach-omap2/board-zoom-display.c:64: undefined reference to `twl_i2c_read_u8'
> arch/arm/mach-omap2/board-zoom-display.c:65: undefined reference to `twl_i2c_read_u8'
> arch/arm/mach-omap2/board-zoom-display.c:84: undefined reference to `twl_i2c_write_u8'
> arch/arm/mach-omap2/board-zoom-display.c:86: undefined reference to `twl_i2c_write_u8'
> arch/arm/mach-omap2/board-zoom-display.c:91: undefined reference to `twl_i2c_write_u8'
> arch/arm/mach-omap2/board-zoom-display.c:92: undefined reference to `twl_i2c_write_u8'
> arch/arm/mach-omap2/board-zoom-display.c:72: undefined reference to `twl_i2c_write_u8'
> Signed-off-by: Tony Lindgren<tony@atomide.com>
[...]
> diff --git a/arch/arm/mach-omap2/board-zoom-display.c b/arch/arm/mach-omap2/board-zoom-display.c
> index d4683ba..7f75fcd 100644
> --- a/arch/arm/mach-omap2/board-zoom-display.c
> +++ b/arch/arm/mach-omap2/board-zoom-display.c
> @@ -53,8 +53,11 @@ static void zoom_panel_disable_lcd(struct omap_dss_device *dssdev)
> #define TWL_LED_PWMON 0x0
> #define TWL_LED_PWMOFF 0x1
>
> +
> static int zoom_set_bl_intensity(struct omap_dss_device *dssdev, int level)
> {
> +
Empty lines not needed.
> +#ifdef CONFIG_TWL4030_CORE
> unsigned char c;
> u8 mux_pwm, enb_pwm;
>
WBR, Sergei
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 4/7] ARM: OMAP2+: Fix zoom LCD backlight if TWL_CORE is not selected
2012-02-24 11:53 ` Sergei Shtylyov
@ 2012-02-24 16:25 ` Tony Lindgren
0 siblings, 0 replies; 10+ messages in thread
From: Tony Lindgren @ 2012-02-24 16:25 UTC (permalink / raw)
To: Sergei Shtylyov; +Cc: linux-arm-kernel, linux-omap
* Sergei Shtylyov <sshtylyov@ru.mvista.com> [120224 03:23]:
>
> On 24-02-2012 4:54, Tony Lindgren wrote:
> >--- a/arch/arm/mach-omap2/board-zoom-display.c
> >+++ b/arch/arm/mach-omap2/board-zoom-display.c
> >@@ -53,8 +53,11 @@ static void zoom_panel_disable_lcd(struct omap_dss_device *dssdev)
> > #define TWL_LED_PWMON 0x0
> > #define TWL_LED_PWMOFF 0x1
> >
> >+
> > static int zoom_set_bl_intensity(struct omap_dss_device *dssdev, int level)
> > {
> >+
>
> Empty lines not needed.
Thanks removing those.
Tony
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2012-02-24 16:25 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-02-24 0:54 [PATCH 0/7] More omap2+ randconfig fixes Tony Lindgren
2012-02-24 0:54 ` [PATCH 1/7] ARM: OMAP2+: Fix Kconfig dependencies for USB_ARCH_HAS_EHCI Tony Lindgren
2012-02-24 0:54 ` [PATCH 2/7] ARM: OMAP2+: Fix OMAP_HDQ_BASE build error Tony Lindgren
2012-02-24 0:54 ` [PATCH 3/7] ARM: OMAP2+: Fix board_mux section type conflict when OMAP_MUX is not set Tony Lindgren
2012-02-24 0:54 ` [PATCH 4/7] ARM: OMAP2+: Fix zoom LCD backlight if TWL_CORE is not selected Tony Lindgren
2012-02-24 11:53 ` Sergei Shtylyov
2012-02-24 16:25 ` Tony Lindgren
2012-02-24 0:54 ` [PATCH 5/7] ARM: OMAP2+: Fix devexit for smartreflex when CONFIG_HOTPLUG is not set Tony Lindgren
2012-02-24 0:54 ` [PATCH 6/7] ARM: OMAP: Fix devexit for dma " Tony Lindgren
2012-02-24 0:54 ` [PATCH 7/7] ARM: OMAP2+: Fix multiple randconfig errors with SOC_OMAP and SOC_OMAP_NOOP Tony Lindgren
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).