* [PATCH 1/2] ARM: tegra: only select MACH_HAS_SND_SOC_TEGRA_WM8903 if SOUND_SOC
@ 2011-07-25 15:47 Uwe Kleine-König
[not found] ` <1311608874-31863-1-git-send-email-u.kleine-koenig-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
0 siblings, 1 reply; 10+ messages in thread
From: Uwe Kleine-König @ 2011-07-25 15:47 UTC (permalink / raw)
To: linux-tegra-u79uwXL29TY76Z2rM5mHXA
Cc: linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
kernel-bIcnvbaLZ9MEGnE8C9+IrQ
This fixes:
warning: (MACH_HARMONY && MACH_KAEN && MACH_SEABOARD) selects MACH_HAS_SND_SOC_TEGRA_WM8903 which has unmet direct dependencies (SOUND && !M68K && SND && SND_SOC)
Signed-off-by: Uwe Kleine-König <u.kleine-koenig-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
---
arch/arm/mach-tegra/Kconfig | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/arch/arm/mach-tegra/Kconfig b/arch/arm/mach-tegra/Kconfig
index 5ec1846..33acbd9 100644
--- a/arch/arm/mach-tegra/Kconfig
+++ b/arch/arm/mach-tegra/Kconfig
@@ -27,14 +27,14 @@ comment "Tegra board type"
config MACH_HARMONY
bool "Harmony board"
- select MACH_HAS_SND_SOC_TEGRA_WM8903
+ select MACH_HAS_SND_SOC_TEGRA_WM8903 if SOUND_SOC
help
Support for nVidia Harmony development platform
config MACH_KAEN
bool "Kaen board"
select MACH_SEABOARD
- select MACH_HAS_SND_SOC_TEGRA_WM8903
+ select MACH_HAS_SND_SOC_TEGRA_WM8903 if SOUND_SOC
help
Support for the Kaen version of Seaboard
@@ -45,7 +45,7 @@ config MACH_PAZ00
config MACH_SEABOARD
bool "Seaboard board"
- select MACH_HAS_SND_SOC_TEGRA_WM8903
+ select MACH_HAS_SND_SOC_TEGRA_WM8903 if SOUND_SOC
help
Support for nVidia Seaboard development platform. It will
also be included for some of the derivative boards that
--
1.7.5.4
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH 2/2] ARM: tegra: enable rtc driver in defconfig
[not found] ` <1311608874-31863-1-git-send-email-u.kleine-koenig-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
@ 2011-07-25 15:47 ` Uwe Kleine-König
2011-07-25 16:14 ` [PATCH 1/2] ARM: tegra: only select MACH_HAS_SND_SOC_TEGRA_WM8903 if SOUND_SOC Stephen Warren
1 sibling, 0 replies; 10+ messages in thread
From: Uwe Kleine-König @ 2011-07-25 15:47 UTC (permalink / raw)
To: linux-tegra-u79uwXL29TY76Z2rM5mHXA
Cc: linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
kernel-bIcnvbaLZ9MEGnE8C9+IrQ
Signed-off-by: Uwe Kleine-König <u.kleine-koenig-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
---
arch/arm/configs/tegra_defconfig | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/arch/arm/configs/tegra_defconfig b/arch/arm/configs/tegra_defconfig
index 8845f1c..d87631f 100644
--- a/arch/arm/configs/tegra_defconfig
+++ b/arch/arm/configs/tegra_defconfig
@@ -98,6 +98,8 @@ CONFIG_MMC=y
CONFIG_MMC_SDHCI=y
CONFIG_MMC_SDHCI_PLTFM=y
CONFIG_MMC_SDHCI_TEGRA=y
+CONFIG_RTC_CLASS=y
+CONFIG_RTC_DRV_TEGRA=m
CONFIG_STAGING=y
# CONFIG_STAGING_EXCLUDE_BUILD is not set
CONFIG_IIO=y
--
1.7.5.4
^ permalink raw reply related [flat|nested] 10+ messages in thread
* RE: [PATCH 1/2] ARM: tegra: only select MACH_HAS_SND_SOC_TEGRA_WM8903 if SOUND_SOC
[not found] ` <1311608874-31863-1-git-send-email-u.kleine-koenig-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
2011-07-25 15:47 ` [PATCH 2/2] ARM: tegra: enable rtc driver in defconfig Uwe Kleine-König
@ 2011-07-25 16:14 ` Stephen Warren
[not found] ` <74CDBE0F657A3D45AFBB94109FB122FF049EBDF52B-C7FfzLzN0UxDw2glCA4ptUEOCMrvLtNR@public.gmane.org>
1 sibling, 1 reply; 10+ messages in thread
From: Stephen Warren @ 2011-07-25 16:14 UTC (permalink / raw)
To: Uwe Kleine-König,
linux-tegra-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Cc: linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org,
kernel-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org
Uwe Kleine-König wrote at Monday, July 25, 2011 9:48 AM:
> This fixes:
> warning: (MACH_HARMONY && MACH_KAEN && MACH_SEABOARD) selects MACH_HAS_SND_SOC_TEGRA_WM8903
> which has unmet direct dependencies (SOUND && !M68K && SND && SND_SOC)
> diff --git a/arch/arm/mach-tegra/Kconfig b/arch/arm/mach-tegra/Kconfig
...
> config MACH_HARMONY
> bool "Harmony board"
> - select MACH_HAS_SND_SOC_TEGRA_WM8903
> + select MACH_HAS_SND_SOC_TEGRA_WM8903 if SOUND_SOC
Shouldn't that be SND_SOC?
--
nvpublic
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 1/2] ARM: tegra: only select MACH_HAS_SND_SOC_TEGRA_WM8903 if SOUND_SOC
[not found] ` <74CDBE0F657A3D45AFBB94109FB122FF049EBDF52B-C7FfzLzN0UxDw2glCA4ptUEOCMrvLtNR@public.gmane.org>
@ 2011-07-25 21:13 ` Uwe Kleine-König
2011-07-26 8:15 ` [PATCH v2] ARM: tegra: only select MACH_HAS_SND_SOC_TEGRA_WM8903 if SND_SOC Uwe Kleine-König
1 sibling, 0 replies; 10+ messages in thread
From: Uwe Kleine-König @ 2011-07-25 21:13 UTC (permalink / raw)
To: Stephen Warren
Cc: linux-tegra-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org,
kernel-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org
On Mon, Jul 25, 2011 at 09:14:49AM -0700, Stephen Warren wrote:
> Uwe Kleine-König wrote at Monday, July 25, 2011 9:48 AM:
> > This fixes:
> > warning: (MACH_HARMONY && MACH_KAEN && MACH_SEABOARD) selects MACH_HAS_SND_SOC_TEGRA_WM8903
> > which has unmet direct dependencies (SOUND && !M68K && SND && SND_SOC)
>
> > diff --git a/arch/arm/mach-tegra/Kconfig b/arch/arm/mach-tegra/Kconfig
> ...
> > config MACH_HARMONY
> > bool "Harmony board"
> > - select MACH_HAS_SND_SOC_TEGRA_WM8903
> > + select MACH_HAS_SND_SOC_TEGRA_WM8903 if SOUND_SOC
>
> Shouldn't that be SND_SOC?
Hmm, with SOUND_SOC the warning is gone, too :-)
Yeah, will send a fixed patch tomorrow.
Uwe
--
Pengutronix e.K. | Uwe Kleine-König |
Industrial Linux Solutions | http://www.pengutronix.de/ |
^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH v2] ARM: tegra: only select MACH_HAS_SND_SOC_TEGRA_WM8903 if SND_SOC
[not found] ` <74CDBE0F657A3D45AFBB94109FB122FF049EBDF52B-C7FfzLzN0UxDw2glCA4ptUEOCMrvLtNR@public.gmane.org>
2011-07-25 21:13 ` Uwe Kleine-König
@ 2011-07-26 8:15 ` Uwe Kleine-König
[not found] ` <1311668159-11337-1-git-send-email-u.kleine-koenig-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
1 sibling, 1 reply; 10+ messages in thread
From: Uwe Kleine-König @ 2011-07-26 8:15 UTC (permalink / raw)
To: linux-tegra-u79uwXL29TY76Z2rM5mHXA
Cc: kernel-bIcnvbaLZ9MEGnE8C9+IrQ,
linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, Stephen Warren
This fixes:
warning: (MACH_HARMONY && MACH_KAEN && MACH_SEABOARD) selects MACH_HAS_SND_SOC_TEGRA_WM8903 which has unmet direct dependencies (SOUND && !M68K && SND && SND_SOC)
Signed-off-by: Uwe Kleine-König <u.kleine-koenig-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
---
Changes since (implicit) v1:
- correctly depend on SND_SOC instead of the non-existent SOUND_SOC
- fix commit log accordingly
Thanks to Stephen Warren for noticing.
Best regards
Uwe
arch/arm/mach-tegra/Kconfig | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/arch/arm/mach-tegra/Kconfig b/arch/arm/mach-tegra/Kconfig
index 5ec1846..fec64f3 100644
--- a/arch/arm/mach-tegra/Kconfig
+++ b/arch/arm/mach-tegra/Kconfig
@@ -27,14 +27,14 @@ comment "Tegra board type"
config MACH_HARMONY
bool "Harmony board"
- select MACH_HAS_SND_SOC_TEGRA_WM8903
+ select MACH_HAS_SND_SOC_TEGRA_WM8903 if SND_SOC
help
Support for nVidia Harmony development platform
config MACH_KAEN
bool "Kaen board"
select MACH_SEABOARD
- select MACH_HAS_SND_SOC_TEGRA_WM8903
+ select MACH_HAS_SND_SOC_TEGRA_WM8903 if SND_SOC
help
Support for the Kaen version of Seaboard
@@ -45,7 +45,7 @@ config MACH_PAZ00
config MACH_SEABOARD
bool "Seaboard board"
- select MACH_HAS_SND_SOC_TEGRA_WM8903
+ select MACH_HAS_SND_SOC_TEGRA_WM8903 if SND_SOC
help
Support for nVidia Seaboard development platform. It will
also be included for some of the derivative boards that
--
1.7.5.4
^ permalink raw reply related [flat|nested] 10+ messages in thread
* RE: [PATCH v2] ARM: tegra: only select MACH_HAS_SND_SOC_TEGRA_WM8903 if SND_SOC
[not found] ` <1311668159-11337-1-git-send-email-u.kleine-koenig-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
@ 2011-07-26 15:48 ` Stephen Warren
2011-07-26 23:00 ` Colin Cross
0 siblings, 1 reply; 10+ messages in thread
From: Stephen Warren @ 2011-07-26 15:48 UTC (permalink / raw)
To: Colin Cross (ccross-z5hGa2qSFaRBDgjK7y7TUQ@public.gmane.org),
Olof Johansson (olof-nZhT3qVonbNeoWH0uzbU5w@public.gmane.org),
Arnd Bergmann (arnd-r2nGTMty4D4@public.gmane.org)
Cc: kernel-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org,
linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org,
Uwe Kleine-König,
linux-tegra-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Uwe Kleine-König wrote at Tuesday, July 26, 2011 2:16 AM:
> This fixes:
> warning: (MACH_HARMONY && MACH_KAEN && MACH_SEABOARD) selects MACH_HAS_SND_SOC_TEGRA_WM8903
> which has unmet direct dependencies (SOUND && !M68K && SND && SND_SOC)
>
> Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Acked-by: Stephen Warren <swarren@nvidia.com>
(I'm also CC'ing the various maintainers explicitly, so they see the patch,
and can decide which git tree to take this through)
> ---
> Changes since (implicit) v1:
> - correctly depend on SND_SOC instead of the non-existent SOUND_SOC
> - fix commit log accordingly
>
> Thanks to Stephen Warren for noticing.
>
> Best regards
> Uwe
>
> arch/arm/mach-tegra/Kconfig | 6 +++---
> 1 files changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/arch/arm/mach-tegra/Kconfig b/arch/arm/mach-tegra/Kconfig
> index 5ec1846..fec64f3 100644
> --- a/arch/arm/mach-tegra/Kconfig
> +++ b/arch/arm/mach-tegra/Kconfig
> @@ -27,14 +27,14 @@ comment "Tegra board type"
>
> config MACH_HARMONY
> bool "Harmony board"
> - select MACH_HAS_SND_SOC_TEGRA_WM8903
> + select MACH_HAS_SND_SOC_TEGRA_WM8903 if SND_SOC
> help
> Support for nVidia Harmony development platform
>
> config MACH_KAEN
> bool "Kaen board"
> select MACH_SEABOARD
> - select MACH_HAS_SND_SOC_TEGRA_WM8903
> + select MACH_HAS_SND_SOC_TEGRA_WM8903 if SND_SOC
> help
> Support for the Kaen version of Seaboard
>
> @@ -45,7 +45,7 @@ config MACH_PAZ00
>
> config MACH_SEABOARD
> bool "Seaboard board"
> - select MACH_HAS_SND_SOC_TEGRA_WM8903
> + select MACH_HAS_SND_SOC_TEGRA_WM8903 if SND_SOC
> help
> Support for nVidia Seaboard development platform. It will
> also be included for some of the derivative boards that
> --
> 1.7.5.4
--
nvpublic
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH v2] ARM: tegra: only select MACH_HAS_SND_SOC_TEGRA_WM8903 if SND_SOC
2011-07-26 15:48 ` Stephen Warren
@ 2011-07-26 23:00 ` Colin Cross
[not found] ` <CAMbhsRRnNcokjeyy8HKf0MNvXVvFSQ0dpjGYApvUXtZsrrh66Q-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
0 siblings, 1 reply; 10+ messages in thread
From: Colin Cross @ 2011-07-26 23:00 UTC (permalink / raw)
To: Stephen Warren
Cc: Arnd Bergmann (arnd@arndb.de), linux-tegra@vger.kernel.org,
kernel@pengutronix.de, Uwe Kleine-König,
Olof Johansson (olof@lixom.net),
linux-arm-kernel@lists.infradead.org
On Tue, Jul 26, 2011 at 8:48 AM, Stephen Warren <swarren@nvidia.com> wrote:
> Uwe Kleine-König wrote at Tuesday, July 26, 2011 2:16 AM:
>> This fixes:
>> warning: (MACH_HARMONY && MACH_KAEN && MACH_SEABOARD) selects MACH_HAS_SND_SOC_TEGRA_WM8903
>> which has unmet direct dependencies (SOUND && !M68K && SND && SND_SOC)
>>
>> Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
>
> Acked-by: Stephen Warren <swarren@nvidia.com>
>
> (I'm also CC'ing the various maintainers explicitly, so they see the patch,
> and can decide which git tree to take this through)
Acked-By: Colin Cross <ccross@android.com>
Arnd, can you take this?
>> ---
>> Changes since (implicit) v1:
>> - correctly depend on SND_SOC instead of the non-existent SOUND_SOC
>> - fix commit log accordingly
>>
>> Thanks to Stephen Warren for noticing.
>>
>> Best regards
>> Uwe
>>
>> arch/arm/mach-tegra/Kconfig | 6 +++---
>> 1 files changed, 3 insertions(+), 3 deletions(-)
>>
>> diff --git a/arch/arm/mach-tegra/Kconfig b/arch/arm/mach-tegra/Kconfig
>> index 5ec1846..fec64f3 100644
>> --- a/arch/arm/mach-tegra/Kconfig
>> +++ b/arch/arm/mach-tegra/Kconfig
>> @@ -27,14 +27,14 @@ comment "Tegra board type"
>>
>> config MACH_HARMONY
>> bool "Harmony board"
>> - select MACH_HAS_SND_SOC_TEGRA_WM8903
>> + select MACH_HAS_SND_SOC_TEGRA_WM8903 if SND_SOC
>> help
>> Support for nVidia Harmony development platform
>>
>> config MACH_KAEN
>> bool "Kaen board"
>> select MACH_SEABOARD
>> - select MACH_HAS_SND_SOC_TEGRA_WM8903
>> + select MACH_HAS_SND_SOC_TEGRA_WM8903 if SND_SOC
>> help
>> Support for the Kaen version of Seaboard
>>
>> @@ -45,7 +45,7 @@ config MACH_PAZ00
>>
>> config MACH_SEABOARD
>> bool "Seaboard board"
>> - select MACH_HAS_SND_SOC_TEGRA_WM8903
>> + select MACH_HAS_SND_SOC_TEGRA_WM8903 if SND_SOC
>> help
>> Support for nVidia Seaboard development platform. It will
>> also be included for some of the derivative boards that
>> --
>> 1.7.5.4
>
> --
> nvpublic
>
>
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH v2] ARM: tegra: only select MACH_HAS_SND_SOC_TEGRA_WM8903 if SND_SOC
[not found] ` <CAMbhsRRnNcokjeyy8HKf0MNvXVvFSQ0dpjGYApvUXtZsrrh66Q-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
@ 2011-07-27 15:11 ` Arnd Bergmann
2011-07-27 15:31 ` Uwe Kleine-König
0 siblings, 1 reply; 10+ messages in thread
From: Arnd Bergmann @ 2011-07-27 15:11 UTC (permalink / raw)
To: linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r
Cc: Colin Cross, Stephen Warren,
linux-tegra-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
kernel-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org,
Uwe Kleine-König,
Olof Johansson (olof-nZhT3qVonbNeoWH0uzbU5w@public.gmane.org)
On Wednesday 27 July 2011, Colin Cross wrote:
> >> Signed-off-by: Uwe Kleine-König <u.kleine-koenig-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
> >
> > Acked-by: Stephen Warren <swarren-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
>
> Acked-By: Colin Cross <ccross-z5hGa2qSFaRBDgjK7y7TUQ@public.gmane.org>
>
> Arnd, can you take this?
>
Applied to 'fixes' branch, thanks everyone!
Arnd
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH v2] ARM: tegra: only select MACH_HAS_SND_SOC_TEGRA_WM8903 if SND_SOC
2011-07-27 15:11 ` Arnd Bergmann
@ 2011-07-27 15:31 ` Uwe Kleine-König
2011-07-27 16:33 ` Arnd Bergmann
0 siblings, 1 reply; 10+ messages in thread
From: Uwe Kleine-König @ 2011-07-27 15:31 UTC (permalink / raw)
To: Arnd Bergmann
Cc: Stephen Warren, Olof Johansson (olof@lixom.net),
kernel@pengutronix.de, Colin Cross, linux-tegra@vger.kernel.org,
linux-arm-kernel
Hello Arnd,
On Wed, Jul 27, 2011 at 05:11:04PM +0200, Arnd Bergmann wrote:
> Applied to 'fixes' branch, thanks everyone!
Would you care to take the other patch in this series, too?
(http://thread.gmane.org/gmane.linux.ports.tegra/1138/focus=1139)
Thanks
Uwe
--
Pengutronix e.K. | Uwe Kleine-König |
Industrial Linux Solutions | http://www.pengutronix.de/ |
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH v2] ARM: tegra: only select MACH_HAS_SND_SOC_TEGRA_WM8903 if SND_SOC
2011-07-27 15:31 ` Uwe Kleine-König
@ 2011-07-27 16:33 ` Arnd Bergmann
0 siblings, 0 replies; 10+ messages in thread
From: Arnd Bergmann @ 2011-07-27 16:33 UTC (permalink / raw)
To: Uwe Kleine-König
Cc: Stephen Warren, Olof Johansson (olof@lixom.net),
kernel@pengutronix.de, Colin Cross, linux-tegra@vger.kernel.org,
linux-arm-kernel
On Wednesday 27 July 2011, Uwe Kleine-König wrote:
> On Wed, Jul 27, 2011 at 05:11:04PM +0200, Arnd Bergmann wrote:
> > Applied to 'fixes' branch, thanks everyone!
> Would you care to take the other patch in this series, too?
> (http://thread.gmane.org/gmane.linux.ports.tegra/1138/focus=1139)
That does not look like a bug fix to me. I don't mind the patch,
but I see no reason to apply it at this point, or to the 'fixes'
branch.
I'll wait for Colin to accumulate more patches and then pull those
from him into a tegra specific branch for 3.2, ok? If Colin wants
to have it 3.1, I can pull it into the fixes branch after -rc1.
Arnd
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2011-07-27 16:33 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-07-25 15:47 [PATCH 1/2] ARM: tegra: only select MACH_HAS_SND_SOC_TEGRA_WM8903 if SOUND_SOC Uwe Kleine-König
[not found] ` <1311608874-31863-1-git-send-email-u.kleine-koenig-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
2011-07-25 15:47 ` [PATCH 2/2] ARM: tegra: enable rtc driver in defconfig Uwe Kleine-König
2011-07-25 16:14 ` [PATCH 1/2] ARM: tegra: only select MACH_HAS_SND_SOC_TEGRA_WM8903 if SOUND_SOC Stephen Warren
[not found] ` <74CDBE0F657A3D45AFBB94109FB122FF049EBDF52B-C7FfzLzN0UxDw2glCA4ptUEOCMrvLtNR@public.gmane.org>
2011-07-25 21:13 ` Uwe Kleine-König
2011-07-26 8:15 ` [PATCH v2] ARM: tegra: only select MACH_HAS_SND_SOC_TEGRA_WM8903 if SND_SOC Uwe Kleine-König
[not found] ` <1311668159-11337-1-git-send-email-u.kleine-koenig-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
2011-07-26 15:48 ` Stephen Warren
2011-07-26 23:00 ` Colin Cross
[not found] ` <CAMbhsRRnNcokjeyy8HKf0MNvXVvFSQ0dpjGYApvUXtZsrrh66Q-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2011-07-27 15:11 ` Arnd Bergmann
2011-07-27 15:31 ` Uwe Kleine-König
2011-07-27 16:33 ` Arnd Bergmann
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox