All of lore.kernel.org
 help / color / mirror / Atom feed
* linux-next: manual merge of the input tree with the omap tree
@ 2009-11-19  2:12 ` Stephen Rothwell
  0 siblings, 0 replies; 5+ messages in thread
From: Stephen Rothwell @ 2009-11-19  2:12 UTC (permalink / raw)
  To: Dmitry Torokhov
  Cc: linux-next, linux-kernel, Kalle Valo, Tony Lindgren, linux-omap,
	Jani Nikula

Hi Dmitry,

Today's linux-next merge of the input tree got a conflict in
arch/arm/mach-omap2/board-rx51-peripherals.c between commit
ebff0472f451a07fae9f4e72bdc2af4c52ebb682 ("omap3: rx51: Add wl1251 wlan
driver support") from the omap tree and commit
5018461a887d58f4601207deeebb7c352c2da20a ("ARM OMAP3: RX-51 board - add
initialization of gpio keys") from the input tree.

Just overlapping additions.  I fixed it up (see below) and can carry the
fix as necessary.
-- 
Cheers,
Stephen Rothwell                    sfr@canb.auug.org.au

diff --cc arch/arm/mach-omap2/board-rx51-peripherals.c
index caaeadc,a5c02a4..0000000
--- a/arch/arm/mach-omap2/board-rx51-peripherals.c
+++ b/arch/arm/mach-omap2/board-rx51-peripherals.c
@@@ -21,53 -20,103 +21,134 @@@
  #include <linux/delay.h>
  #include <linux/regulator/machine.h>
  #include <linux/gpio.h>
+ #include <linux/gpio_keys.h>
  #include <linux/mmc/host.h>
  
 -#include <mach/mcspi.h>
 -#include <mach/mux.h>
 -#include <mach/board.h>
 -#include <mach/common.h>
 -#include <mach/dma.h>
 -#include <mach/gpmc.h>
 -#include <mach/onenand.h>
 -#include <mach/gpmc-smc91x.h>
 +#include <plat/mcspi.h>
 +#include <plat/mux.h>
 +#include <plat/board.h>
 +#include <plat/common.h>
 +#include <plat/dma.h>
 +#include <plat/gpmc.h>
 +#include <plat/onenand.h>
 +#include <plat/gpmc-smc91x.h>
  
  #include "mmc-twl4030.h"
  
  #define SYSTEM_REV_B_USES_VAUX3	0x1699
  #define SYSTEM_REV_S_USES_VAUX3 0x8
  
 +#define RX51_WL1251_POWER_GPIO		87
 +#define RX51_WL1251_IRQ_GPIO		42
 +
 +static void rx51_wl1251_set_power(bool enable);
 +
 +static struct wl12xx_platform_data wl1251_pdata = {
 +	.set_power = rx51_wl1251_set_power,
 +};
 +
 +static struct omap2_mcspi_device_config wl1251_mcspi_config = {
 +	.turbo_mode	= 0,
 +	.single_channel	= 1,
 +};
 +
 +/* list all spi devices here */
 +enum {
 +	RX51_SPI_WL1251,
 +};
 +
 +static struct spi_board_info rx51_peripherals_spi_board_info[] __initdata = {
 +	[RX51_SPI_WL1251] = {
 +		.modalias		= "wl1251",
 +		.bus_num		= 4,
 +		.chip_select		= 0,
 +		.max_speed_hz   	= 48000000,
 +		.mode                   = SPI_MODE_2,
 +		.controller_data	= &wl1251_mcspi_config,
 +		.platform_data		= &wl1251_pdata,
 +	},
 +};
 +
+ #if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
+ 
+ #define RX51_GPIO_CAMERA_LENS_COVER	110
+ #define RX51_GPIO_CAMERA_FOCUS		68
+ #define RX51_GPIO_CAMERA_CAPTURE	69
+ #define RX51_GPIO_KEYPAD_SLIDE		71
+ #define RX51_GPIO_LOCK_BUTTON		113
+ #define RX51_GPIO_PROXIMITY		89
+ 
+ #define RX51_GPIO_DEBOUNCE_TIMEOUT	10
+ 
+ static struct gpio_keys_button rx51_gpio_keys[] = {
+ 	{
+ 		.desc			= "Camera Lens Cover",
+ 		.type			= EV_SW,
+ 		.code			= SW_CAMERA_LENS_COVER,
+ 		.gpio			= RX51_GPIO_CAMERA_LENS_COVER,
+ 		.active_low		= 1,
+ 		.debounce_interval	= RX51_GPIO_DEBOUNCE_TIMEOUT,
+ 	}, {
+ 		.desc			= "Camera Focus",
+ 		.type			= EV_KEY,
+ 		.code			= KEY_CAMERA_FOCUS,
+ 		.gpio			= RX51_GPIO_CAMERA_FOCUS,
+ 		.active_low		= 1,
+ 		.debounce_interval	= RX51_GPIO_DEBOUNCE_TIMEOUT,
+ 	}, {
+ 		.desc			= "Camera Capture",
+ 		.type			= EV_KEY,
+ 		.code			= KEY_CAMERA,
+ 		.gpio			= RX51_GPIO_CAMERA_CAPTURE,
+ 		.active_low		= 1,
+ 		.debounce_interval	= RX51_GPIO_DEBOUNCE_TIMEOUT,
+ 	}, {
+ 		.desc			= "Lock Button",
+ 		.type			= EV_KEY,
+ 		.code			= KEY_SCREENLOCK,
+ 		.gpio			= RX51_GPIO_LOCK_BUTTON,
+ 		.active_low		= 1,
+ 		.debounce_interval	= RX51_GPIO_DEBOUNCE_TIMEOUT,
+ 	}, {
+ 		.desc			= "Keypad Slide",
+ 		.type			= EV_SW,
+ 		.code			= SW_KEYPAD_SLIDE,
+ 		.gpio			= RX51_GPIO_KEYPAD_SLIDE,
+ 		.active_low		= 1,
+ 		.debounce_interval	= RX51_GPIO_DEBOUNCE_TIMEOUT,
+ 	}, {
+ 		.desc			= "Proximity Sensor",
+ 		.type			= EV_SW,
+ 		.code			= SW_FRONT_PROXIMITY,
+ 		.gpio			= RX51_GPIO_PROXIMITY,
+ 		.active_low		= 0,
+ 		.debounce_interval	= RX51_GPIO_DEBOUNCE_TIMEOUT,
+ 	}
+ };
+ 
+ static struct gpio_keys_platform_data rx51_gpio_keys_data = {
+ 	.buttons	= rx51_gpio_keys,
+ 	.nbuttons	= ARRAY_SIZE(rx51_gpio_keys),
+ };
+ 
+ static struct platform_device rx51_gpio_keys_device = {
+ 	.name	= "gpio-keys",
+ 	.id	= -1,
+ 	.dev	= {
+ 		.platform_data	= &rx51_gpio_keys_data,
+ 	},
+ };
+ 
+ static void __init rx51_add_gpio_keys(void)
+ {
+ 	platform_device_register(&rx51_gpio_keys_device);
+ }
+ #else
+ static void __init rx51_add_gpio_keys(void)
+ {
+ }
+ #endif /* CONFIG_KEYBOARD_GPIO || CONFIG_KEYBOARD_GPIO_MODULE */
+ 
  static int board_keymap[] = {
  	KEY(0, 0, KEY_Q),
  	KEY(0, 1, KEY_O),

^ permalink raw reply	[flat|nested] 5+ messages in thread

* linux-next: manual merge of the input tree with the omap tree
@ 2009-11-19  2:12 ` Stephen Rothwell
  0 siblings, 0 replies; 5+ messages in thread
From: Stephen Rothwell @ 2009-11-19  2:12 UTC (permalink / raw)
  To: Dmitry Torokhov
  Cc: linux-next, linux-kernel, Kalle Valo, Tony Lindgren, linux-omap,
	Jani Nikula

Hi Dmitry,

Today's linux-next merge of the input tree got a conflict in
arch/arm/mach-omap2/board-rx51-peripherals.c between commit
ebff0472f451a07fae9f4e72bdc2af4c52ebb682 ("omap3: rx51: Add wl1251 wlan
driver support") from the omap tree and commit
5018461a887d58f4601207deeebb7c352c2da20a ("ARM OMAP3: RX-51 board - add
initialization of gpio keys") from the input tree.

Just overlapping additions.  I fixed it up (see below) and can carry the
fix as necessary.
-- 
Cheers,
Stephen Rothwell                    sfr@canb.auug.org.au

diff --cc arch/arm/mach-omap2/board-rx51-peripherals.c
index caaeadc,a5c02a4..0000000
--- a/arch/arm/mach-omap2/board-rx51-peripherals.c
+++ b/arch/arm/mach-omap2/board-rx51-peripherals.c
@@@ -21,53 -20,103 +21,134 @@@
  #include <linux/delay.h>
  #include <linux/regulator/machine.h>
  #include <linux/gpio.h>
+ #include <linux/gpio_keys.h>
  #include <linux/mmc/host.h>
  
 -#include <mach/mcspi.h>
 -#include <mach/mux.h>
 -#include <mach/board.h>
 -#include <mach/common.h>
 -#include <mach/dma.h>
 -#include <mach/gpmc.h>
 -#include <mach/onenand.h>
 -#include <mach/gpmc-smc91x.h>
 +#include <plat/mcspi.h>
 +#include <plat/mux.h>
 +#include <plat/board.h>
 +#include <plat/common.h>
 +#include <plat/dma.h>
 +#include <plat/gpmc.h>
 +#include <plat/onenand.h>
 +#include <plat/gpmc-smc91x.h>
  
  #include "mmc-twl4030.h"
  
  #define SYSTEM_REV_B_USES_VAUX3	0x1699
  #define SYSTEM_REV_S_USES_VAUX3 0x8
  
 +#define RX51_WL1251_POWER_GPIO		87
 +#define RX51_WL1251_IRQ_GPIO		42
 +
 +static void rx51_wl1251_set_power(bool enable);
 +
 +static struct wl12xx_platform_data wl1251_pdata = {
 +	.set_power = rx51_wl1251_set_power,
 +};
 +
 +static struct omap2_mcspi_device_config wl1251_mcspi_config = {
 +	.turbo_mode	= 0,
 +	.single_channel	= 1,
 +};
 +
 +/* list all spi devices here */
 +enum {
 +	RX51_SPI_WL1251,
 +};
 +
 +static struct spi_board_info rx51_peripherals_spi_board_info[] __initdata = {
 +	[RX51_SPI_WL1251] = {
 +		.modalias		= "wl1251",
 +		.bus_num		= 4,
 +		.chip_select		= 0,
 +		.max_speed_hz   	= 48000000,
 +		.mode                   = SPI_MODE_2,
 +		.controller_data	= &wl1251_mcspi_config,
 +		.platform_data		= &wl1251_pdata,
 +	},
 +};
 +
+ #if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
+ 
+ #define RX51_GPIO_CAMERA_LENS_COVER	110
+ #define RX51_GPIO_CAMERA_FOCUS		68
+ #define RX51_GPIO_CAMERA_CAPTURE	69
+ #define RX51_GPIO_KEYPAD_SLIDE		71
+ #define RX51_GPIO_LOCK_BUTTON		113
+ #define RX51_GPIO_PROXIMITY		89
+ 
+ #define RX51_GPIO_DEBOUNCE_TIMEOUT	10
+ 
+ static struct gpio_keys_button rx51_gpio_keys[] = {
+ 	{
+ 		.desc			= "Camera Lens Cover",
+ 		.type			= EV_SW,
+ 		.code			= SW_CAMERA_LENS_COVER,
+ 		.gpio			= RX51_GPIO_CAMERA_LENS_COVER,
+ 		.active_low		= 1,
+ 		.debounce_interval	= RX51_GPIO_DEBOUNCE_TIMEOUT,
+ 	}, {
+ 		.desc			= "Camera Focus",
+ 		.type			= EV_KEY,
+ 		.code			= KEY_CAMERA_FOCUS,
+ 		.gpio			= RX51_GPIO_CAMERA_FOCUS,
+ 		.active_low		= 1,
+ 		.debounce_interval	= RX51_GPIO_DEBOUNCE_TIMEOUT,
+ 	}, {
+ 		.desc			= "Camera Capture",
+ 		.type			= EV_KEY,
+ 		.code			= KEY_CAMERA,
+ 		.gpio			= RX51_GPIO_CAMERA_CAPTURE,
+ 		.active_low		= 1,
+ 		.debounce_interval	= RX51_GPIO_DEBOUNCE_TIMEOUT,
+ 	}, {
+ 		.desc			= "Lock Button",
+ 		.type			= EV_KEY,
+ 		.code			= KEY_SCREENLOCK,
+ 		.gpio			= RX51_GPIO_LOCK_BUTTON,
+ 		.active_low		= 1,
+ 		.debounce_interval	= RX51_GPIO_DEBOUNCE_TIMEOUT,
+ 	}, {
+ 		.desc			= "Keypad Slide",
+ 		.type			= EV_SW,
+ 		.code			= SW_KEYPAD_SLIDE,
+ 		.gpio			= RX51_GPIO_KEYPAD_SLIDE,
+ 		.active_low		= 1,
+ 		.debounce_interval	= RX51_GPIO_DEBOUNCE_TIMEOUT,
+ 	}, {
+ 		.desc			= "Proximity Sensor",
+ 		.type			= EV_SW,
+ 		.code			= SW_FRONT_PROXIMITY,
+ 		.gpio			= RX51_GPIO_PROXIMITY,
+ 		.active_low		= 0,
+ 		.debounce_interval	= RX51_GPIO_DEBOUNCE_TIMEOUT,
+ 	}
+ };
+ 
+ static struct gpio_keys_platform_data rx51_gpio_keys_data = {
+ 	.buttons	= rx51_gpio_keys,
+ 	.nbuttons	= ARRAY_SIZE(rx51_gpio_keys),
+ };
+ 
+ static struct platform_device rx51_gpio_keys_device = {
+ 	.name	= "gpio-keys",
+ 	.id	= -1,
+ 	.dev	= {
+ 		.platform_data	= &rx51_gpio_keys_data,
+ 	},
+ };
+ 
+ static void __init rx51_add_gpio_keys(void)
+ {
+ 	platform_device_register(&rx51_gpio_keys_device);
+ }
+ #else
+ static void __init rx51_add_gpio_keys(void)
+ {
+ }
+ #endif /* CONFIG_KEYBOARD_GPIO || CONFIG_KEYBOARD_GPIO_MODULE */
+ 
  static int board_keymap[] = {
  	KEY(0, 0, KEY_Q),
  	KEY(0, 1, KEY_O),

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: linux-next: manual merge of the input tree with the omap tree
  2009-11-19  2:12 ` Stephen Rothwell
  (?)
@ 2009-11-19  2:53 ` Tony Lindgren
  2009-11-20  8:58   ` Dmitry Torokhov
  -1 siblings, 1 reply; 5+ messages in thread
From: Tony Lindgren @ 2009-11-19  2:53 UTC (permalink / raw)
  To: Stephen Rothwell
  Cc: Dmitry Torokhov, linux-next, linux-kernel, Kalle Valo,
	linux-omap, Jani Nikula

* Stephen Rothwell <sfr@canb.auug.org.au> [091118 18:11]:
> Hi Dmitry,
> 
> Today's linux-next merge of the input tree got a conflict in
> arch/arm/mach-omap2/board-rx51-peripherals.c between commit
> ebff0472f451a07fae9f4e72bdc2af4c52ebb682 ("omap3: rx51: Add wl1251 wlan
> driver support") from the omap tree and commit
> 5018461a887d58f4601207deeebb7c352c2da20a ("ARM OMAP3: RX-51 board - add
> initialization of gpio keys") from the input tree.
> 
> Just overlapping additions.  I fixed it up (see below) and can carry the
> fix as necessary.

Thanks again for dealing with these merge conflicts again Stephen!

I've cherry picked 765af10de6d93820def9978c53ed828e4d3bd4f4 from Dmitry's
tree to keep things compiling. Then I've added a modified version of
5018461a887d58f4601207deeebb7c352c2da20a to omap for-next branch.

Dmitry, could you please drop 5018461a887d58f4601207deeebb7c352c2da20a from
your tree now?

Because of us moving the omap headers from mach to plat, there will be a
conflict otherwise. Sorry for all the hassles with this merge window, this
should be an issue for this merge window only.

Regards,

Tony



> -- 
> Cheers,
> Stephen Rothwell                    sfr@canb.auug.org.au
> 
> diff --cc arch/arm/mach-omap2/board-rx51-peripherals.c
> index caaeadc,a5c02a4..0000000
> --- a/arch/arm/mach-omap2/board-rx51-peripherals.c
> +++ b/arch/arm/mach-omap2/board-rx51-peripherals.c
> @@@ -21,53 -20,103 +21,134 @@@
>   #include <linux/delay.h>
>   #include <linux/regulator/machine.h>
>   #include <linux/gpio.h>
> + #include <linux/gpio_keys.h>
>   #include <linux/mmc/host.h>
>   
>  -#include <mach/mcspi.h>
>  -#include <mach/mux.h>
>  -#include <mach/board.h>
>  -#include <mach/common.h>
>  -#include <mach/dma.h>
>  -#include <mach/gpmc.h>
>  -#include <mach/onenand.h>
>  -#include <mach/gpmc-smc91x.h>
>  +#include <plat/mcspi.h>
>  +#include <plat/mux.h>
>  +#include <plat/board.h>
>  +#include <plat/common.h>
>  +#include <plat/dma.h>
>  +#include <plat/gpmc.h>
>  +#include <plat/onenand.h>
>  +#include <plat/gpmc-smc91x.h>
>   
>   #include "mmc-twl4030.h"
>   
>   #define SYSTEM_REV_B_USES_VAUX3	0x1699
>   #define SYSTEM_REV_S_USES_VAUX3 0x8
>   
>  +#define RX51_WL1251_POWER_GPIO		87
>  +#define RX51_WL1251_IRQ_GPIO		42
>  +
>  +static void rx51_wl1251_set_power(bool enable);
>  +
>  +static struct wl12xx_platform_data wl1251_pdata = {
>  +	.set_power = rx51_wl1251_set_power,
>  +};
>  +
>  +static struct omap2_mcspi_device_config wl1251_mcspi_config = {
>  +	.turbo_mode	= 0,
>  +	.single_channel	= 1,
>  +};
>  +
>  +/* list all spi devices here */
>  +enum {
>  +	RX51_SPI_WL1251,
>  +};
>  +
>  +static struct spi_board_info rx51_peripherals_spi_board_info[] __initdata = {
>  +	[RX51_SPI_WL1251] = {
>  +		.modalias		= "wl1251",
>  +		.bus_num		= 4,
>  +		.chip_select		= 0,
>  +		.max_speed_hz   	= 48000000,
>  +		.mode                   = SPI_MODE_2,
>  +		.controller_data	= &wl1251_mcspi_config,
>  +		.platform_data		= &wl1251_pdata,
>  +	},
>  +};
>  +
> + #if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
> + 
> + #define RX51_GPIO_CAMERA_LENS_COVER	110
> + #define RX51_GPIO_CAMERA_FOCUS		68
> + #define RX51_GPIO_CAMERA_CAPTURE	69
> + #define RX51_GPIO_KEYPAD_SLIDE		71
> + #define RX51_GPIO_LOCK_BUTTON		113
> + #define RX51_GPIO_PROXIMITY		89
> + 
> + #define RX51_GPIO_DEBOUNCE_TIMEOUT	10
> + 
> + static struct gpio_keys_button rx51_gpio_keys[] = {
> + 	{
> + 		.desc			= "Camera Lens Cover",
> + 		.type			= EV_SW,
> + 		.code			= SW_CAMERA_LENS_COVER,
> + 		.gpio			= RX51_GPIO_CAMERA_LENS_COVER,
> + 		.active_low		= 1,
> + 		.debounce_interval	= RX51_GPIO_DEBOUNCE_TIMEOUT,
> + 	}, {
> + 		.desc			= "Camera Focus",
> + 		.type			= EV_KEY,
> + 		.code			= KEY_CAMERA_FOCUS,
> + 		.gpio			= RX51_GPIO_CAMERA_FOCUS,
> + 		.active_low		= 1,
> + 		.debounce_interval	= RX51_GPIO_DEBOUNCE_TIMEOUT,
> + 	}, {
> + 		.desc			= "Camera Capture",
> + 		.type			= EV_KEY,
> + 		.code			= KEY_CAMERA,
> + 		.gpio			= RX51_GPIO_CAMERA_CAPTURE,
> + 		.active_low		= 1,
> + 		.debounce_interval	= RX51_GPIO_DEBOUNCE_TIMEOUT,
> + 	}, {
> + 		.desc			= "Lock Button",
> + 		.type			= EV_KEY,
> + 		.code			= KEY_SCREENLOCK,
> + 		.gpio			= RX51_GPIO_LOCK_BUTTON,
> + 		.active_low		= 1,
> + 		.debounce_interval	= RX51_GPIO_DEBOUNCE_TIMEOUT,
> + 	}, {
> + 		.desc			= "Keypad Slide",
> + 		.type			= EV_SW,
> + 		.code			= SW_KEYPAD_SLIDE,
> + 		.gpio			= RX51_GPIO_KEYPAD_SLIDE,
> + 		.active_low		= 1,
> + 		.debounce_interval	= RX51_GPIO_DEBOUNCE_TIMEOUT,
> + 	}, {
> + 		.desc			= "Proximity Sensor",
> + 		.type			= EV_SW,
> + 		.code			= SW_FRONT_PROXIMITY,
> + 		.gpio			= RX51_GPIO_PROXIMITY,
> + 		.active_low		= 0,
> + 		.debounce_interval	= RX51_GPIO_DEBOUNCE_TIMEOUT,
> + 	}
> + };
> + 
> + static struct gpio_keys_platform_data rx51_gpio_keys_data = {
> + 	.buttons	= rx51_gpio_keys,
> + 	.nbuttons	= ARRAY_SIZE(rx51_gpio_keys),
> + };
> + 
> + static struct platform_device rx51_gpio_keys_device = {
> + 	.name	= "gpio-keys",
> + 	.id	= -1,
> + 	.dev	= {
> + 		.platform_data	= &rx51_gpio_keys_data,
> + 	},
> + };
> + 
> + static void __init rx51_add_gpio_keys(void)
> + {
> + 	platform_device_register(&rx51_gpio_keys_device);
> + }
> + #else
> + static void __init rx51_add_gpio_keys(void)
> + {
> + }
> + #endif /* CONFIG_KEYBOARD_GPIO || CONFIG_KEYBOARD_GPIO_MODULE */
> + 
>   static int board_keymap[] = {
>   	KEY(0, 0, KEY_Q),
>   	KEY(0, 1, KEY_O),

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: linux-next: manual merge of the input tree with the omap tree
  2009-11-19  2:53 ` Tony Lindgren
@ 2009-11-20  8:58   ` Dmitry Torokhov
  2009-11-20 20:53     ` Tony Lindgren
  0 siblings, 1 reply; 5+ messages in thread
From: Dmitry Torokhov @ 2009-11-20  8:58 UTC (permalink / raw)
  To: Tony Lindgren
  Cc: Stephen Rothwell, linux-next, linux-kernel, Kalle Valo,
	linux-omap, Jani Nikula

On Wed, Nov 18, 2009 at 06:53:30PM -0800, Tony Lindgren wrote:
> 
> Dmitry, could you please drop 5018461a887d58f4601207deeebb7c352c2da20a from
> your tree now?
> 

Done.

-- 
Dmitry

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: linux-next: manual merge of the input tree with the omap tree
  2009-11-20  8:58   ` Dmitry Torokhov
@ 2009-11-20 20:53     ` Tony Lindgren
  0 siblings, 0 replies; 5+ messages in thread
From: Tony Lindgren @ 2009-11-20 20:53 UTC (permalink / raw)
  To: Dmitry Torokhov
  Cc: Stephen Rothwell, linux-next, linux-kernel, Kalle Valo,
	linux-omap, Jani Nikula

* Dmitry Torokhov <dmitry.torokhov@gmail.com> [091120 00:59]:
> On Wed, Nov 18, 2009 at 06:53:30PM -0800, Tony Lindgren wrote:
> > 
> > Dmitry, could you please drop 5018461a887d58f4601207deeebb7c352c2da20a from
> > your tree now?
> > 
> 
> Done.

Thanks!

Tony

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2009-11-20 20:54 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-11-19  2:12 linux-next: manual merge of the input tree with the omap tree Stephen Rothwell
2009-11-19  2:12 ` Stephen Rothwell
2009-11-19  2:53 ` Tony Lindgren
2009-11-20  8:58   ` Dmitry Torokhov
2009-11-20 20:53     ` Tony Lindgren

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.