Re: [PATCH v3 3/3] misc: Add w2sg0004 gps receiver driver

2015-10-16 Thread kbuild test robot
Hi Nikolaus, [auto build test WARNING on tty/tty-next -- if it's inappropriate base, please suggest rules for selecting the more suitable base] url: https://github.com/0day-ci/linux/commits/H-Nikolaus-Schaller/UART-slave-device-support-goldelico-version/20151017-021238 config: xtensa-allmodc

Re: [PATCH v3 3/3] misc: Add w2sg0004 gps receiver driver

2015-10-16 Thread H. Nikolaus Schaller
Am 16.10.2015 um 21:38 schrieb Arnd Bergmann : > On Friday 16 October 2015 21:27:11 H. Nikolaus Schaller wrote: >> Am 16.10.2015 um 21:06 schrieb Arnd Bergmann : >> >>> On Friday 16 October 2015 20:08:35 H. Nikolaus Schaller wrote: + +static int w2sg_data_probe(struct platform_device *

Re: [PATCH v3 3/3] misc: Add w2sg0004 gps receiver driver

2015-10-16 Thread Arnd Bergmann
On Friday 16 October 2015 21:27:11 H. Nikolaus Schaller wrote: > Am 16.10.2015 um 21:06 schrieb Arnd Bergmann : > > > On Friday 16 October 2015 20:08:35 H. Nikolaus Schaller wrote: > >> + > >> +static int w2sg_data_probe(struct platform_device *pdev) > >> +{ > >> + struct w2sg_pdata *pdata =

Re: [PATCH v3 3/3] misc: Add w2sg0004 gps receiver driver

2015-10-16 Thread H. Nikolaus Schaller
Am 16.10.2015 um 21:06 schrieb Arnd Bergmann : > On Friday 16 October 2015 20:08:35 H. Nikolaus Schaller wrote: >> + >> +static int w2sg_data_probe(struct platform_device *pdev) >> +{ >> + struct w2sg_pdata *pdata = dev_get_platdata(&pdev->dev); >> + struct w2sg_data *data; >> +

Re: [PATCH v3 3/3] misc: Add w2sg0004 gps receiver driver

2015-10-16 Thread Arnd Bergmann
On Friday 16 October 2015 20:08:35 H. Nikolaus Schaller wrote: > + > +static int w2sg_data_probe(struct platform_device *pdev) > +{ > + struct w2sg_pdata *pdata = dev_get_platdata(&pdev->dev); > + struct w2sg_data *data; > + struct rfkill *rf_kill; > + int err; > + > +

Re: [PATCH v3 3/3] misc: Add w2sg0004 gps receiver driver

2015-10-16 Thread H. Nikolaus Schaller
Am 16.10.2015 um 20:08 schrieb H. Nikolaus Schaller : > Add driver for Wi2Wi W2SG0004/84 GPS module connected through uart. > Use uart slave + notification hooks to glue with tty and turn on/off the > module. Detect if the module is turned on (sends data) but should be off, > e.g. if already turn

[PATCH v3 3/3] misc: Add w2sg0004 gps receiver driver

2015-10-16 Thread H. Nikolaus Schaller
Add driver for Wi2Wi W2SG0004/84 GPS module connected through uart. Use uart slave + notification hooks to glue with tty and turn on/off the module. Detect if the module is turned on (sends data) but should be off, e.g. if already turned on during boot. Additionally, rfkill block/unblock can be us