From mboxrd@z Thu Jan 1 00:00:00 1970 From: arnd@arndb.de (Arnd Bergmann) Date: Mon, 03 Oct 2011 11:36:01 +0200 Subject: [PATCH 3/3] tty/serial: atmel_serial: __devinit_p for probe function In-Reply-To: References: Message-ID: <4355360.0xR5ZY7sEk@wuerfel> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org On Monday 03 October 2011 12:11:19 Nicolas Ferre wrote: > } > > static struct platform_driver atmel_serial_driver = { > - .probe = atmel_serial_probe, > + .probe = __devinit_p(atmel_serial_probe), > .remove = __devexit_p(atmel_serial_remove), > .suspend = atmel_serial_suspend, > .resume = atmel_serial_resume, Still wrong: __devinit_p does not exist and is not needed. What bug are you trying to fix here? Arnd