lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Date:	Thu, 19 Nov 2009 13:12:16 +1100
From:	Stephen Rothwell <sfr@...b.auug.org.au>
To:	Dmitry Torokhov <dmitry.torokhov@...il.com>
Cc:	linux-next@...r.kernel.org, linux-kernel@...r.kernel.org,
	Kalle Valo <kalle.valo@...ia.com>,
	Tony Lindgren <tony@...mide.com>, <linux-omap@...r.kernel.org>,
	Jani Nikula <ext-jani.1.nikula@...ia.com>
Subject: linux-next: manual merge of the input tree with the omap tree

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@...b.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),
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ