* [PATCH 01/10] arm: omap4: fix kconfig warning
[not found] <1324341747-5922-1-git-send-email-felipe.contreras@gmail.com>
@ 2011-12-20 0:42 ` Felipe Contreras
2011-12-22 18:22 ` Tony Lindgren
2011-12-20 0:42 ` [PATCH 02/10] arm: vexpress: " Felipe Contreras
` (2 subsequent siblings)
3 siblings, 1 reply; 11+ messages in thread
From: Felipe Contreras @ 2011-12-20 0:42 UTC (permalink / raw)
To: linux-arm-kernel
warning: (ARCH_OMAP4 && ARCH_VEXPRESS_CA9X4) selects ARM_ERRATA_720789 which has unmet direct dependencies (CPU_V7 && SMP)
Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
---
arch/arm/mach-omap2/Kconfig | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/arch/arm/mach-omap2/Kconfig b/arch/arm/mach-omap2/Kconfig
index e1293aa..eb7c3ac 100644
--- a/arch/arm/mach-omap2/Kconfig
+++ b/arch/arm/mach-omap2/Kconfig
@@ -46,7 +46,7 @@ config ARCH_OMAP4
select LOCAL_TIMERS if SMP
select PL310_ERRATA_588369
select PL310_ERRATA_727915
- select ARM_ERRATA_720789
+ select ARM_ERRATA_720789 if SMP
select ARCH_HAS_OPP
select PM_OPP if PM
select USB_ARCH_HAS_EHCI
--
1.7.8.rc1.14.g248db
^ permalink raw reply related [flat|nested] 11+ messages in thread* [PATCH 02/10] arm: vexpress: fix kconfig warning
[not found] <1324341747-5922-1-git-send-email-felipe.contreras@gmail.com>
2011-12-20 0:42 ` [PATCH 01/10] arm: omap4: fix kconfig warning Felipe Contreras
@ 2011-12-20 0:42 ` Felipe Contreras
2011-12-22 11:39 ` Dave Martin
2011-12-20 0:42 ` [PATCH 03/10] arm: omap2: fix omap3 touchbook " Felipe Contreras
2011-12-20 0:42 ` [PATCH 04/10] arm: omap2: fix regulator warnings Felipe Contreras
3 siblings, 1 reply; 11+ messages in thread
From: Felipe Contreras @ 2011-12-20 0:42 UTC (permalink / raw)
To: linux-arm-kernel
warning: (ARCH_OMAP4 && ARCH_VEXPRESS_CA9X4) selects ARM_ERRATA_720789 which has unmet direct dependencies (CPU_V7 && SMP)
warning: (ARCH_VEXPRESS_CA9X4) selects ARM_ERRATA_751472 which has unmet direct dependencies (CPU_V7 && SMP)
Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
---
arch/arm/mach-vexpress/Kconfig | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/arch/arm/mach-vexpress/Kconfig b/arch/arm/mach-vexpress/Kconfig
index 9311484..3fbcb8c 100644
--- a/arch/arm/mach-vexpress/Kconfig
+++ b/arch/arm/mach-vexpress/Kconfig
@@ -5,8 +5,8 @@ config ARCH_VEXPRESS_CA9X4
bool "Versatile Express Cortex-A9x4 tile"
select CPU_V7
select ARM_GIC
- select ARM_ERRATA_720789
- select ARM_ERRATA_751472
+ select ARM_ERRATA_720789 if SMP
+ select ARM_ERRATA_751472 if SMP
select ARM_ERRATA_753970
endmenu
--
1.7.8.rc1.14.g248db
^ permalink raw reply related [flat|nested] 11+ messages in thread* [PATCH 02/10] arm: vexpress: fix kconfig warning
2011-12-20 0:42 ` [PATCH 02/10] arm: vexpress: " Felipe Contreras
@ 2011-12-22 11:39 ` Dave Martin
2011-12-22 16:15 ` Felipe Contreras
0 siblings, 1 reply; 11+ messages in thread
From: Dave Martin @ 2011-12-22 11:39 UTC (permalink / raw)
To: linux-arm-kernel
On Tue, Dec 20, 2011 at 02:42:19AM +0200, Felipe Contreras wrote:
> warning: (ARCH_OMAP4 && ARCH_VEXPRESS_CA9X4) selects ARM_ERRATA_720789 which has unmet direct dependencies (CPU_V7 && SMP)
> warning: (ARCH_VEXPRESS_CA9X4) selects ARM_ERRATA_751472 which has unmet direct dependencies (CPU_V7 && SMP)
>
> Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
> ---
> arch/arm/mach-vexpress/Kconfig | 4 ++--
> 1 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/arch/arm/mach-vexpress/Kconfig b/arch/arm/mach-vexpress/Kconfig
> index 9311484..3fbcb8c 100644
> --- a/arch/arm/mach-vexpress/Kconfig
> +++ b/arch/arm/mach-vexpress/Kconfig
> @@ -5,8 +5,8 @@ config ARCH_VEXPRESS_CA9X4
> bool "Versatile Express Cortex-A9x4 tile"
> select CPU_V7
> select ARM_GIC
> - select ARM_ERRATA_720789
> - select ARM_ERRATA_751472
> + select ARM_ERRATA_720789 if SMP
> + select ARM_ERRATA_751472 if SMP
> select ARM_ERRATA_753970
NAK -- I hit this problem too, but in fact the errata configs should not
really be dependent on SMP; these are fixed in a couple of patches
currently queued in Russell's patch system:
7196/1 - errata: remove SMP dependency for erratum 720789
7197/1 - errata: remove SMP dependency for erratum 751472
...so we should avoid duplicating knowledge about exactly what these
errata workarounds do, where it can be avoided.
In the meantime, the warning is harmless.
Cheers
---Dave
^ permalink raw reply [flat|nested] 11+ messages in thread
* [PATCH 02/10] arm: vexpress: fix kconfig warning
2011-12-22 11:39 ` Dave Martin
@ 2011-12-22 16:15 ` Felipe Contreras
0 siblings, 0 replies; 11+ messages in thread
From: Felipe Contreras @ 2011-12-22 16:15 UTC (permalink / raw)
To: linux-arm-kernel
On Thu, Dec 22, 2011 at 1:39 PM, Dave Martin <dave.martin@linaro.org> wrote:
> NAK -- I hit this problem too, but in fact the errata configs should not
> really be dependent on SMP; these are fixed in a couple of patches
> currently queued in Russell's patch system:
>
> 7196/1 - errata: remove SMP dependency for erratum 720789
> 7197/1 - errata: remove SMP dependency for erratum 751472
>
> ...so we should avoid duplicating knowledge about exactly what these
> errata workarounds do, where it can be avoided.
>
> In the meantime, the warning is harmless.
All right.
--
Felipe Contreras
^ permalink raw reply [flat|nested] 11+ messages in thread
* [PATCH 03/10] arm: omap2: fix omap3 touchbook kconfig warning
[not found] <1324341747-5922-1-git-send-email-felipe.contreras@gmail.com>
2011-12-20 0:42 ` [PATCH 01/10] arm: omap4: fix kconfig warning Felipe Contreras
2011-12-20 0:42 ` [PATCH 02/10] arm: vexpress: " Felipe Contreras
@ 2011-12-20 0:42 ` Felipe Contreras
2011-12-22 18:22 ` Tony Lindgren
2011-12-20 0:42 ` [PATCH 04/10] arm: omap2: fix regulator warnings Felipe Contreras
3 siblings, 1 reply; 11+ messages in thread
From: Felipe Contreras @ 2011-12-20 0:42 UTC (permalink / raw)
To: linux-arm-kernel
warning: (MACH_OMAP3_TOUCHBOOK && DRM_RADEON_KMS && DRM_I915 && STUB_POULSBO && FB_BACKLIGHT && USB_APPLEDISPLAY && FB_OLPC_DCON && ASUS_LAPTOP && SONY_LAPTOP && THINKPAD_ACPI && EEEPC_LAPTOP && ACPI_ASUS && ACPI_CMPC && SAMSUNG_Q10) selects BACKLIGHT_CLASS_DEVICE which has unmet direct dependencies (HAS_IOMEM && BACKLIGHT_LCD_SUPPORT)
A lot of boards need BACKLIGHT_CLASS_DEVICE for the framebuffers to
work, but it's not *needed* for the device itself. It might be nice to
enable it by default somewhoe if graphics stuff is enabled, but that's
another story.
Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
---
arch/arm/mach-omap2/Kconfig | 1 -
1 files changed, 0 insertions(+), 1 deletions(-)
diff --git a/arch/arm/mach-omap2/Kconfig b/arch/arm/mach-omap2/Kconfig
index eb7c3ac..dbecb9a 100644
--- a/arch/arm/mach-omap2/Kconfig
+++ b/arch/arm/mach-omap2/Kconfig
@@ -211,7 +211,6 @@ config MACH_OMAP3_TOUCHBOOK
bool "OMAP3 Touch Book"
depends on ARCH_OMAP3
default y
- select BACKLIGHT_CLASS_DEVICE
config MACH_OMAP_3430SDP
bool "OMAP 3430 SDP board"
--
1.7.8.rc1.14.g248db
^ permalink raw reply related [flat|nested] 11+ messages in thread* [PATCH 03/10] arm: omap2: fix omap3 touchbook kconfig warning
2011-12-20 0:42 ` [PATCH 03/10] arm: omap2: fix omap3 touchbook " Felipe Contreras
@ 2011-12-22 18:22 ` Tony Lindgren
0 siblings, 0 replies; 11+ messages in thread
From: Tony Lindgren @ 2011-12-22 18:22 UTC (permalink / raw)
To: linux-arm-kernel
* Felipe Contreras <felipe.contreras@gmail.com> [111219 16:11]:
> warning: (MACH_OMAP3_TOUCHBOOK && DRM_RADEON_KMS && DRM_I915 && STUB_POULSBO && FB_BACKLIGHT && USB_APPLEDISPLAY && FB_OLPC_DCON && ASUS_LAPTOP && SONY_LAPTOP && THINKPAD_ACPI && EEEPC_LAPTOP && ACPI_ASUS && ACPI_CMPC && SAMSUNG_Q10) selects BACKLIGHT_CLASS_DEVICE which has unmet direct dependencies (HAS_IOMEM && BACKLIGHT_LCD_SUPPORT)
>
> A lot of boards need BACKLIGHT_CLASS_DEVICE for the framebuffers to
> work, but it's not *needed* for the device itself. It might be nice to
> enable it by default somewhoe if graphics stuff is enabled, but that's
> another story.
Thanks applying into fixes-non-critical-part3.
Tony
^ permalink raw reply [flat|nested] 11+ messages in thread
* [PATCH 04/10] arm: omap2: fix regulator warnings
[not found] <1324341747-5922-1-git-send-email-felipe.contreras@gmail.com>
` (2 preceding siblings ...)
2011-12-20 0:42 ` [PATCH 03/10] arm: omap2: fix omap3 touchbook " Felipe Contreras
@ 2011-12-20 0:42 ` Felipe Contreras
2011-12-22 18:23 ` Tony Lindgren
3 siblings, 1 reply; 11+ messages in thread
From: Felipe Contreras @ 2011-12-20 0:42 UTC (permalink / raw)
To: linux-arm-kernel
warning: (MACH_OMAP_ZOOM2 && MACH_OMAP_ZOOM3 && MACH_OMAP_4430SDP && MACH_OMAP4_PANDA && TPS6105X) selects REGULATOR_FIXED_VOLTAGE which has unmet direct dependencies (REGULATOR)
Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
---
arch/arm/mach-omap2/Kconfig | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/arch/arm/mach-omap2/Kconfig b/arch/arm/mach-omap2/Kconfig
index dbecb9a..04734b5 100644
--- a/arch/arm/mach-omap2/Kconfig
+++ b/arch/arm/mach-omap2/Kconfig
@@ -205,7 +205,7 @@ config MACH_OMAP3_PANDORA
depends on ARCH_OMAP3
default y
select OMAP_PACKAGE_CBB
- select REGULATOR_FIXED_VOLTAGE
+ select REGULATOR_FIXED_VOLTAGE if REGULATOR
config MACH_OMAP3_TOUCHBOOK
bool "OMAP3 Touch Book"
@@ -256,7 +256,7 @@ config MACH_OMAP_ZOOM2
select SERIAL_8250
select SERIAL_CORE_CONSOLE
select SERIAL_8250_CONSOLE
- select REGULATOR_FIXED_VOLTAGE
+ select REGULATOR_FIXED_VOLTAGE if REGULATOR
config MACH_OMAP_ZOOM3
bool "OMAP3630 Zoom3 board"
@@ -266,7 +266,7 @@ config MACH_OMAP_ZOOM3
select SERIAL_8250
select SERIAL_CORE_CONSOLE
select SERIAL_8250_CONSOLE
- select REGULATOR_FIXED_VOLTAGE
+ select REGULATOR_FIXED_VOLTAGE if REGULATOR
config MACH_CM_T35
bool "CompuLab CM-T35/CM-T3730 modules"
@@ -320,7 +320,7 @@ config MACH_OMAP_4430SDP
depends on ARCH_OMAP4
select OMAP_PACKAGE_CBL
select OMAP_PACKAGE_CBS
- select REGULATOR_FIXED_VOLTAGE
+ select REGULATOR_FIXED_VOLTAGE if REGULATOR
config MACH_OMAP4_PANDA
bool "OMAP4 Panda Board"
@@ -328,7 +328,7 @@ config MACH_OMAP4_PANDA
depends on ARCH_OMAP4
select OMAP_PACKAGE_CBL
select OMAP_PACKAGE_CBS
- select REGULATOR_FIXED_VOLTAGE
+ select REGULATOR_FIXED_VOLTAGE if REGULATOR
config OMAP3_EMU
bool "OMAP3 debugging peripherals"
--
1.7.8.rc1.14.g248db
^ permalink raw reply related [flat|nested] 11+ messages in thread