From mboxrd@z Thu Jan 1 00:00:00 1970 From: Aaro Koskinen Subject: Re: [PATCH v2 2/2] omap: RX-51: enable tsc2005 Date: Mon, 09 Nov 2009 15:29:30 +0200 Message-ID: <4AF8193A.70505@nokia.com> References: <1257340982-22814-1-git-send-email-aaro.koskinen@nokia.com> <1257340982-22814-2-git-send-email-aaro.koskinen@nokia.com> <87d43ufih0.fsf@purkki.valot.fi> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <87d43ufih0.fsf@purkki.valot.fi> Sender: linux-omap-owner@vger.kernel.org To: ext Kalle Valo Cc: "linux-input@vger.kernel.org" , "linux-omap@vger.kernel.org" , "linux-kernel@vger.kernel.org" , "dmitry.torokhov@gmail.com" , "tony@atomide.com" List-Id: linux-input@vger.kernel.org Hi, ext Kalle Valo wrote: > Aaro Koskinen writes: > >> Enable tsc2005 touchscreen driver on the RX-51 board. >> >> Signed-off-by: Aaro Koskinen >> --- >> >> The patch is for 2.6.32-rc6. > > [...] > >> +static struct spi_board_info rx51_peripherals_spi_board_info[] = { >> + [0] = { >> + .modalias = "tsc2005", >> + .bus_num = 1, >> + .chip_select = 0, >> + .irq = OMAP_GPIO_IRQ(RX51_TSC2005_IRQ_GPIO), >> + .max_speed_hz = 6000000, >> + .controller_data = &tsc2005_mcspi_config, >> + .platform_data = &tsc2005_config, >> + }, >> +}; > > I sent a wl1251 patch which adds spi_board_info and conflicts with > this patch: > > http://www.mail-archive.com/linux-omap@vger.kernel.org/msg17604.html > > How do we handle this? I can resend/rebase this patch once the wl1251 patch is integrated. BTW, check the comment from Tommi Rantala - spi_board_info can be marked with __initdata. A.