* [GIT PULL 2/5] omap board changes for v3.6 merge window [not found] <0M4ZFU-1RqIwX3VUq-00yonj@mx.kundenserver.de> @ 2012-07-10 15:34 ` Arnd Bergmann 2012-07-11 0:52 ` Zumeng Chen 0 siblings, 1 reply; 5+ messages in thread From: Arnd Bergmann @ 2012-07-10 15:34 UTC (permalink / raw) To: linux-arm-kernel On Tuesday 10 July 2012, Tony Lindgren wrote: > The following changes since commit 6887a4131da3adaab011613776d865f4bcfb5678: > > Linux 3.5-rc5 (2012-06-30 16:08:57 -0700) > > are available in the git repository at: > > git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap tags/omap-devel-board-for-v3.6 > > for you to fetch changes up to b103a2e22a238085f5c50d96345e1a09bb1efd50: > > ARM: OMAP3: Fix omap3evm randconfig error introduced by VBUS support (2012-07-09 23:22:24 -0700) > > ---------------------------------------------------------------- > Board and platform data related changes for omaps > > ---------------------------------------------------------------- > Andy Gross (1): > omap2+: add drm device > > Dmitry Lifshitz (2): > ARM: OMAP3: cm-t35: add mt9t001 camera sensor support > ARM: OMAP3: cm-t35: add tvp5150 decoder support > > Peter Ujfalusi (2): > ARM: OMAP: board-4430sdp: MUX configuration for sys_nirq2 > ARM: OMAP: board-omap4panda: MUX configuration for sys_nirq2 > > Tony Lindgren (1): > ARM: OMAP3: Fix omap3evm randconfig error introduced by VBUS support > > Zumeng Chen (4): > ARM: OMAP3EVM: Add NAND flash definition > ARM: OMAP3EVM: Adding USB internal LDOs board file > ARM: omap3evm: enable VBUS switch for EHCI tranceiver > ARM: OMAP3530evm: set pendown_state and debounce time for ads7846 > diff --cc arch/arm/mach-omap2/common-board-devices.c I got a conflict in arch/arm/mach-omap2/common-board-devices.c between 16aced80f6739 "ARM: OMAP3530evm: set pendown_state and debounce time for ads7846" and 97ee9f01d6f26 "ARM: OMAP: fix the ads7846 init code", see my resolution below. Please check if what I have in the for-next branch makese sense to you all. Arnd * Unmerged path arch/arm/mach-omap2/common-board-devices.c diff --git a/arch/arm/mach-omap2/common-board-devices.c b/arch/arm/mach-omap2/common-board-devices.c index 1706ebc..1473474 100644 --- a/arch/arm/mach-omap2/common-board-devices.c +++ b/arch/arm/mach-omap2/common-board-devices.c @@ -35,6 +35,16 @@ static struct omap2_mcspi_device_config ads7846_mcspi_config = { .turbo_mode = 0, }; +/* + * ADS7846 driver maybe request a gpio according to the value + * of pdata->get_pendown_state, but we have done this. So set + * get_pendown_state to avoid twice gpio requesting. + */ +static int omap3_get_pendown_state(void) +{ + return !gpio_get_value(OMAP3_EVM_TS_GPIO); +} + static struct ads7846_platform_data ads7846_config = { .x_max = 0x0fff, .y_max = 0x0fff, @@ -45,6 +55,7 @@ static struct ads7846_platform_data ads7846_config = { .debounce_rep = 1, .gpio_pendown = -EINVAL, .keep_vref_on = 1, + .get_pendown_state = &omap3_get_pendown_state, }; static struct spi_board_info ads7846_spi_board_info __initdata = { @@ -63,28 +74,30 @@ void __init omap_ads7846_init(int bus_num, int gpio_pendown, int gpio_debounce, struct spi_board_info *spi_bi = &ads7846_spi_board_info; int err; - if (board_pdata && board_pdata->get_pendown_state) { - err = gpio_request_one(gpio_pendown, GPIOF_IN, "TSPenDown"); - if (err) { - pr_err("Couldn't obtain gpio for TSPenDown: %d\n", err); - return; - } - gpio_export(gpio_pendown, 0); - - if (gpio_debounce) - gpio_set_debounce(gpio_pendown, gpio_debounce); + err = gpio_request_one(gpio_pendown, GPIOF_IN, "TSPenDown"); + if (err) { + pr_err("Couldn't obtain gpio for TSPenDown: %d\n", err); + return; } + if (gpio_debounce) + gpio_set_debounce(gpio_pendown, gpio_debounce); + spi_bi->bus_num = bus_num; spi_bi->irq = gpio_to_irq(gpio_pendown); if (board_pdata) { board_pdata->gpio_pendown = gpio_pendown; spi_bi->platform_data = board_pdata; + if (board_pdata->get_pendown_state) + gpio_export(gpio_pendown, 0); } else { ads7846_config.gpio_pendown = gpio_pendown; } + if (!board_pdata || (board_pdata && !board_pdata->get_pendown_state)) + gpio_free(gpio_pendown); + spi_register_board_info(&ads7846_spi_board_info, 1); } #else ^ permalink raw reply related [flat|nested] 5+ messages in thread
* [GIT PULL 2/5] omap board changes for v3.6 merge window 2012-07-10 15:34 ` [GIT PULL 2/5] omap board changes for v3.6 merge window Arnd Bergmann @ 2012-07-11 0:52 ` Zumeng Chen 2012-07-11 1:20 ` Zumeng Chen 2012-07-11 6:51 ` Tony Lindgren 0 siblings, 2 replies; 5+ messages in thread From: Zumeng Chen @ 2012-07-11 0:52 UTC (permalink / raw) To: linux-arm-kernel ? 2012?07?10? 23:34, Arnd Bergmann ??: > On Tuesday 10 July 2012, Tony Lindgren wrote: >> The following changes since commit 6887a4131da3adaab011613776d865f4bcfb5678: >> >> Linux 3.5-rc5 (2012-06-30 16:08:57 -0700) >> >> are available in the git repository at: >> >> git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap tags/omap-devel-board-for-v3.6 >> >> for you to fetch changes up to b103a2e22a238085f5c50d96345e1a09bb1efd50: >> >> ARM: OMAP3: Fix omap3evm randconfig error introduced by VBUS support (2012-07-09 23:22:24 -0700) >> >> ---------------------------------------------------------------- >> Board and platform data related changes for omaps >> >> ---------------------------------------------------------------- >> Andy Gross (1): >> omap2+: add drm device >> >> Dmitry Lifshitz (2): >> ARM: OMAP3: cm-t35: add mt9t001 camera sensor support >> ARM: OMAP3: cm-t35: add tvp5150 decoder support >> >> Peter Ujfalusi (2): >> ARM: OMAP: board-4430sdp: MUX configuration for sys_nirq2 >> ARM: OMAP: board-omap4panda: MUX configuration for sys_nirq2 >> >> Tony Lindgren (1): >> ARM: OMAP3: Fix omap3evm randconfig error introduced by VBUS support >> >> Zumeng Chen (4): >> ARM: OMAP3EVM: Add NAND flash definition >> ARM: OMAP3EVM: Adding USB internal LDOs board file >> ARM: omap3evm: enable VBUS switch for EHCI tranceiver >> ARM: OMAP3530evm: set pendown_state and debounce time for ads7846 >> diff --cc arch/arm/mach-omap2/common-board-devices.c > I got a conflict in arch/arm/mach-omap2/common-board-devices.c between > 16aced80f6739 "ARM: OMAP3530evm: set pendown_state and debounce time for > ads7846" and 97ee9f01d6f26 "ARM: OMAP: fix the ads7846 init code", > see my resolution below. > > Please check if what I have in the for-next branch makese sense to you > all. No problem, many thanks Arnd for your information. I'll check it, test it, and send you feedback. Regards, Zumeng > > Arnd > > * Unmerged path arch/arm/mach-omap2/common-board-devices.c > diff --git a/arch/arm/mach-omap2/common-board-devices.c b/arch/arm/mach-omap2/common-board-devices.c > index 1706ebc..1473474 100644 > --- a/arch/arm/mach-omap2/common-board-devices.c > +++ b/arch/arm/mach-omap2/common-board-devices.c > @@ -35,6 +35,16 @@ static struct omap2_mcspi_device_config ads7846_mcspi_config = { > .turbo_mode = 0, > }; > > +/* > + * ADS7846 driver maybe request a gpio according to the value > + * of pdata->get_pendown_state, but we have done this. So set > + * get_pendown_state to avoid twice gpio requesting. > + */ > +static int omap3_get_pendown_state(void) > +{ > + return !gpio_get_value(OMAP3_EVM_TS_GPIO); > +} > + > static struct ads7846_platform_data ads7846_config = { > .x_max = 0x0fff, > .y_max = 0x0fff, > @@ -45,6 +55,7 @@ static struct ads7846_platform_data ads7846_config = { > .debounce_rep = 1, > .gpio_pendown = -EINVAL, > .keep_vref_on = 1, > + .get_pendown_state =&omap3_get_pendown_state, > }; > > static struct spi_board_info ads7846_spi_board_info __initdata = { > @@ -63,28 +74,30 @@ void __init omap_ads7846_init(int bus_num, int gpio_pendown, int gpio_debounce, > struct spi_board_info *spi_bi =&ads7846_spi_board_info; > int err; > > - if (board_pdata&& board_pdata->get_pendown_state) { > - err = gpio_request_one(gpio_pendown, GPIOF_IN, "TSPenDown"); > - if (err) { > - pr_err("Couldn't obtain gpio for TSPenDown: %d\n", err); > - return; > - } > - gpio_export(gpio_pendown, 0); > - > - if (gpio_debounce) > - gpio_set_debounce(gpio_pendown, gpio_debounce); > + err = gpio_request_one(gpio_pendown, GPIOF_IN, "TSPenDown"); > + if (err) { > + pr_err("Couldn't obtain gpio for TSPenDown: %d\n", err); > + return; > } > > + if (gpio_debounce) > + gpio_set_debounce(gpio_pendown, gpio_debounce); > + > spi_bi->bus_num = bus_num; > spi_bi->irq = gpio_to_irq(gpio_pendown); > > if (board_pdata) { > board_pdata->gpio_pendown = gpio_pendown; > spi_bi->platform_data = board_pdata; > + if (board_pdata->get_pendown_state) > + gpio_export(gpio_pendown, 0); > } else { > ads7846_config.gpio_pendown = gpio_pendown; > } > > + if (!board_pdata || (board_pdata&& !board_pdata->get_pendown_state)) > + gpio_free(gpio_pendown); > + > spi_register_board_info(&ads7846_spi_board_info, 1); > } > #else ^ permalink raw reply [flat|nested] 5+ messages in thread
* [GIT PULL 2/5] omap board changes for v3.6 merge window 2012-07-11 0:52 ` Zumeng Chen @ 2012-07-11 1:20 ` Zumeng Chen 2012-07-11 6:51 ` Tony Lindgren 1 sibling, 0 replies; 5+ messages in thread From: Zumeng Chen @ 2012-07-11 1:20 UTC (permalink / raw) To: linux-arm-kernel It seems work well now, thanks Tony and Arnd for your extra work on these patches. Regards, Zumeng ? 2012?07?11? 08:52, Zumeng Chen ??: > ? 2012?07?10? 23:34, Arnd Bergmann ??: >> On Tuesday 10 July 2012, Tony Lindgren wrote: >>> The following changes since commit >>> 6887a4131da3adaab011613776d865f4bcfb5678: >>> >>> Linux 3.5-rc5 (2012-06-30 16:08:57 -0700) >>> >>> are available in the git repository at: >>> >>> git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap >>> tags/omap-devel-board-for-v3.6 >>> >>> for you to fetch changes up to >>> b103a2e22a238085f5c50d96345e1a09bb1efd50: >>> >>> ARM: OMAP3: Fix omap3evm randconfig error introduced by VBUS >>> support (2012-07-09 23:22:24 -0700) >>> >>> ---------------------------------------------------------------- >>> Board and platform data related changes for omaps >>> >>> ---------------------------------------------------------------- >>> Andy Gross (1): >>> omap2+: add drm device >>> >>> Dmitry Lifshitz (2): >>> ARM: OMAP3: cm-t35: add mt9t001 camera sensor support >>> ARM: OMAP3: cm-t35: add tvp5150 decoder support >>> >>> Peter Ujfalusi (2): >>> ARM: OMAP: board-4430sdp: MUX configuration for sys_nirq2 >>> ARM: OMAP: board-omap4panda: MUX configuration for sys_nirq2 >>> >>> Tony Lindgren (1): >>> ARM: OMAP3: Fix omap3evm randconfig error introduced by VBUS >>> support >>> >>> Zumeng Chen (4): >>> ARM: OMAP3EVM: Add NAND flash definition >>> ARM: OMAP3EVM: Adding USB internal LDOs board file >>> ARM: omap3evm: enable VBUS switch for EHCI tranceiver >>> ARM: OMAP3530evm: set pendown_state and debounce time for >>> ads7846 >>> diff --cc arch/arm/mach-omap2/common-board-devices.c >> I got a conflict in arch/arm/mach-omap2/common-board-devices.c between >> 16aced80f6739 "ARM: OMAP3530evm: set pendown_state and debounce time for >> ads7846" and 97ee9f01d6f26 "ARM: OMAP: fix the ads7846 init code", >> see my resolution below. >> >> Please check if what I have in the for-next branch makese sense to you >> all. > No problem, many thanks Arnd for your information. > I'll check it, test it, and send you feedback. > > Regards, > Zumeng >> >> Arnd >> >> * Unmerged path arch/arm/mach-omap2/common-board-devices.c >> diff --git a/arch/arm/mach-omap2/common-board-devices.c >> b/arch/arm/mach-omap2/common-board-devices.c >> index 1706ebc..1473474 100644 >> --- a/arch/arm/mach-omap2/common-board-devices.c >> +++ b/arch/arm/mach-omap2/common-board-devices.c >> @@ -35,6 +35,16 @@ static struct omap2_mcspi_device_config >> ads7846_mcspi_config = { >> .turbo_mode = 0, >> }; >> >> +/* >> + * ADS7846 driver maybe request a gpio according to the value >> + * of pdata->get_pendown_state, but we have done this. So set >> + * get_pendown_state to avoid twice gpio requesting. >> + */ >> +static int omap3_get_pendown_state(void) >> +{ >> + return !gpio_get_value(OMAP3_EVM_TS_GPIO); >> +} >> + >> static struct ads7846_platform_data ads7846_config = { >> .x_max = 0x0fff, >> .y_max = 0x0fff, >> @@ -45,6 +55,7 @@ static struct ads7846_platform_data ads7846_config = { >> .debounce_rep = 1, >> .gpio_pendown = -EINVAL, >> .keep_vref_on = 1, >> + .get_pendown_state =&omap3_get_pendown_state, >> }; >> >> static struct spi_board_info ads7846_spi_board_info __initdata = { >> @@ -63,28 +74,30 @@ void __init omap_ads7846_init(int bus_num, int >> gpio_pendown, int gpio_debounce, >> struct spi_board_info *spi_bi =&ads7846_spi_board_info; >> int err; >> >> - if (board_pdata&& board_pdata->get_pendown_state) { >> - err = gpio_request_one(gpio_pendown, GPIOF_IN, "TSPenDown"); >> - if (err) { >> - pr_err("Couldn't obtain gpio for TSPenDown: %d\n", err); >> - return; >> - } >> - gpio_export(gpio_pendown, 0); >> - >> - if (gpio_debounce) >> - gpio_set_debounce(gpio_pendown, gpio_debounce); >> + err = gpio_request_one(gpio_pendown, GPIOF_IN, "TSPenDown"); >> + if (err) { >> + pr_err("Couldn't obtain gpio for TSPenDown: %d\n", err); >> + return; >> } >> >> + if (gpio_debounce) >> + gpio_set_debounce(gpio_pendown, gpio_debounce); >> + >> spi_bi->bus_num = bus_num; >> spi_bi->irq = gpio_to_irq(gpio_pendown); >> >> if (board_pdata) { >> board_pdata->gpio_pendown = gpio_pendown; >> spi_bi->platform_data = board_pdata; >> + if (board_pdata->get_pendown_state) >> + gpio_export(gpio_pendown, 0); >> } else { >> ads7846_config.gpio_pendown = gpio_pendown; >> } >> >> + if (!board_pdata || (board_pdata&& >> !board_pdata->get_pendown_state)) >> + gpio_free(gpio_pendown); >> + >> spi_register_board_info(&ads7846_spi_board_info, 1); >> } >> #else > > -- > To unsubscribe from this list: send the line "unsubscribe linux-omap" in > the body of a message to majordomo at vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 5+ messages in thread
* [GIT PULL 2/5] omap board changes for v3.6 merge window 2012-07-11 0:52 ` Zumeng Chen 2012-07-11 1:20 ` Zumeng Chen @ 2012-07-11 6:51 ` Tony Lindgren 1 sibling, 0 replies; 5+ messages in thread From: Tony Lindgren @ 2012-07-11 6:51 UTC (permalink / raw) To: linux-arm-kernel * Zumeng Chen <zumeng.chen@windriver.com> [120710 17:57]: > ? 2012?07?10? 23:34, Arnd Bergmann ??: > >I got a conflict in arch/arm/mach-omap2/common-board-devices.c between > >16aced80f6739 "ARM: OMAP3530evm: set pendown_state and debounce time for > >ads7846" and 97ee9f01d6f26 "ARM: OMAP: fix the ads7846 init code", > >see my resolution below. > > > >Please check if what I have in the for-next branch makese sense to you > >all. > > No problem, many thanks Arnd for your information. > I'll check it, test it, and send you feedback. Thanks, looks good. Also I've checked that for-next builds fine with my testconfigs. Regards, Tony ^ permalink raw reply [flat|nested] 5+ messages in thread
* [GIT PULL 1/5] omap device tree changes for v3.6 merge window @ 2012-07-10 13:05 Tony Lindgren 2012-07-10 13:05 ` [GIT PULL 2/5] omap board " Tony Lindgren 0 siblings, 1 reply; 5+ messages in thread From: Tony Lindgren @ 2012-07-10 13:05 UTC (permalink / raw) To: linux-arm-kernel The following changes since commit 6887a4131da3adaab011613776d865f4bcfb5678: Linux 3.5-rc5 (2012-06-30 16:08:57 -0700) are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap tags/omap-devel-dt-for-v3.6 for you to fetch changes up to f700c4d780f14125f61b70e86d805908efe3fb89: arm/dts: New dts file for PandaBoardES (4460) (2012-07-09 05:37:05 -0700) ---------------------------------------------------------------- Device tree related patches for omaps ---------------------------------------------------------------- Afzal Mohammed (1): arm/dts: am33xx wdt node AnilKumar Ch (4): arm/dts: Add initial DT support for AM33XX SoC family arm/dts: Add support for AM335x EVM arm/dts: Add support for AM335x BeagleBone arm/dts: remove MMC/SD and SPI related entries from am33xx.dtsi Jon Hunter (1): arm/dts: OMAP2: Add support for OMAP2420H4 Board Peter Ujfalusi (7): arm/dts: omap4: Add entry for OMAP McPDM IP arm/dts: omap4: Add entry for OMAP DMIC IP arm/dts: omap4-sdp: Add fixed regulator to represent VBAT arm/dts: omap4-sdp: Add support for twl6040 arm/dts: omap4-sdp: Enable audio support via device tree arm/dts: omap4-panda: Audio support for PandaBoard 4430 arm/dts: New dts file for PandaBoardES (4460) Uri Yosef (1): arm/dts: OMAP4: Add Variscite OMAP4 System-On-Modeule support Vaibhav Hiremath (2): arm/dts: Add support for TI AM3517/05 EVM board arm/dts: omap3-evm: Add i2c and twl4030 support Xiao Jiang (3): arm/dts: add wdt node for omap3 and omap4 ARM: OMAP: avoid build wdt platform device if with dt support watchdog: omap_wdt: add device tree support .../devicetree/bindings/arm/omap/omap.txt | 3 + .../devicetree/bindings/watchdog/omap-wdt.txt | 14 ++ arch/arm/boot/dts/am335x-bone.dts | 20 +++ arch/arm/boot/dts/am335x-evm.dts | 20 +++ arch/arm/boot/dts/am33xx.dtsi | 158 ++++++++++++++++++++ arch/arm/boot/dts/am3517-evm.dts | 32 ++++ arch/arm/boot/dts/omap2420-h4.dts | 20 +++ arch/arm/boot/dts/omap3-evm.dts | 28 ++++ arch/arm/boot/dts/omap3.dtsi | 5 + arch/arm/boot/dts/omap4-panda.dts | 37 +++++ arch/arm/boot/dts/omap4-pandaES.dts | 24 +++ arch/arm/boot/dts/omap4-sdp.dts | 68 +++++++++ arch/arm/boot/dts/omap4-var_som.dts | 96 ++++++++++++ arch/arm/boot/dts/omap4.dtsi | 23 +++ arch/arm/mach-omap2/devices.c | 2 +- drivers/watchdog/omap_wdt.c | 7 + 16 files changed, 556 insertions(+), 1 deletion(-) create mode 100644 Documentation/devicetree/bindings/watchdog/omap-wdt.txt create mode 100644 arch/arm/boot/dts/am335x-bone.dts create mode 100644 arch/arm/boot/dts/am335x-evm.dts create mode 100644 arch/arm/boot/dts/am33xx.dtsi create mode 100644 arch/arm/boot/dts/am3517-evm.dts create mode 100644 arch/arm/boot/dts/omap2420-h4.dts create mode 100644 arch/arm/boot/dts/omap4-pandaES.dts create mode 100644 arch/arm/boot/dts/omap4-var_som.dts ^ permalink raw reply [flat|nested] 5+ messages in thread
* [GIT PULL 2/5] omap board changes for v3.6 merge window 2012-07-10 13:05 [GIT PULL 1/5] omap device tree " Tony Lindgren @ 2012-07-10 13:05 ` Tony Lindgren 0 siblings, 0 replies; 5+ messages in thread From: Tony Lindgren @ 2012-07-10 13:05 UTC (permalink / raw) To: linux-arm-kernel The following changes since commit 6887a4131da3adaab011613776d865f4bcfb5678: Linux 3.5-rc5 (2012-06-30 16:08:57 -0700) are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap tags/omap-devel-board-for-v3.6 for you to fetch changes up to b103a2e22a238085f5c50d96345e1a09bb1efd50: ARM: OMAP3: Fix omap3evm randconfig error introduced by VBUS support (2012-07-09 23:22:24 -0700) ---------------------------------------------------------------- Board and platform data related changes for omaps ---------------------------------------------------------------- Andy Gross (1): omap2+: add drm device Dmitry Lifshitz (2): ARM: OMAP3: cm-t35: add mt9t001 camera sensor support ARM: OMAP3: cm-t35: add tvp5150 decoder support Peter Ujfalusi (2): ARM: OMAP: board-4430sdp: MUX configuration for sys_nirq2 ARM: OMAP: board-omap4panda: MUX configuration for sys_nirq2 Tony Lindgren (1): ARM: OMAP3: Fix omap3evm randconfig error introduced by VBUS support Zumeng Chen (4): ARM: OMAP3EVM: Add NAND flash definition ARM: OMAP3EVM: Adding USB internal LDOs board file ARM: omap3evm: enable VBUS switch for EHCI tranceiver ARM: OMAP3530evm: set pendown_state and debounce time for ads7846 arch/arm/mach-omap2/Makefile | 4 + arch/arm/mach-omap2/board-4430sdp.c | 3 + arch/arm/mach-omap2/board-cm-t35.c | 89 ++++++++++++++++++++ arch/arm/mach-omap2/board-omap3evm.c | 78 ++++++++++++++++- arch/arm/mach-omap2/board-omap4panda.c | 3 + arch/arm/mach-omap2/common-board-devices.c | 18 +++- arch/arm/mach-omap2/common-board-devices.h | 1 + arch/arm/mach-omap2/drm.c | 61 ++++++++++++++ drivers/staging/omapdrm/omap_drv.h | 2 +- .../linux/platform_data/omap_drm.h | 19 ++--- 10 files changed, 263 insertions(+), 15 deletions(-) create mode 100644 arch/arm/mach-omap2/drm.c rename drivers/staging/omapdrm/omap_priv.h => include/linux/platform_data/omap_drm.h (81%) ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2012-07-11 6:51 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- [not found] <0M4ZFU-1RqIwX3VUq-00yonj@mx.kundenserver.de> 2012-07-10 15:34 ` [GIT PULL 2/5] omap board changes for v3.6 merge window Arnd Bergmann 2012-07-11 0:52 ` Zumeng Chen 2012-07-11 1:20 ` Zumeng Chen 2012-07-11 6:51 ` Tony Lindgren 2012-07-10 13:05 [GIT PULL 1/5] omap device tree " Tony Lindgren 2012-07-10 13:05 ` [GIT PULL 2/5] omap board " 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).