Re: [PATCH] iio: adc: dln2-adc: initialize local struct before using it

2017-09-13 Thread Jonathan Cameron
On Tue, 12 Sep 2017 09:01:27 +0200 Martin Kepplinger wrote: > Am 12.09.2017 03:32 schrieb kbuild test robot: > > Hi Martin, > > > > [auto build test WARNING on iio/togreg] > > [also build test WARNING on next-20170911] > > [cannot apply to v4.13] > > [if your patch is applied to the wrong git tr

Re: [PATCH] iio: adc: dln2-adc: initialize local struct before using it

2017-09-12 Thread Martin Kepplinger
Am 12.09.2017 03:32 schrieb kbuild test robot: Hi Martin, [auto build test WARNING on iio/togreg] [also build test WARNING on next-20170911] [cannot apply to v4.13] [if your patch is applied to the wrong git tree, please drop us a note to help improve the system] url: https://github.com/0day-ci

Re: [PATCH] iio: adc: dln2-adc: initialize local struct before using it

2017-09-11 Thread kbuild test robot
Hi Martin, [auto build test WARNING on iio/togreg] [also build test WARNING on next-20170911] [cannot apply to v4.13] [if your patch is applied to the wrong git tree, please drop us a note to help improve the system] url: https://github.com/0day-ci/linux/commits/Martin-Kepplinger/iio-adc-dln

Re: [PATCH] iio: adc: dln2-adc: initialize local struct before using it

2017-09-10 Thread Jonathan Cameron
On Sun, 10 Sep 2017 14:45:01 +0200 Martin Kepplinger wrote: > struct data is defined and declared locally. Initiliazation has to be done > manually, so let's add that. > > Signed-off-by: Martin Kepplinger > --- > > This is more of a question actually! Did you have in mind that data is > not in

[PATCH] iio: adc: dln2-adc: initialize local struct before using it

2017-09-10 Thread Martin Kepplinger
struct data is defined and declared locally. Initiliazation has to be done manually, so let's add that. Signed-off-by: Martin Kepplinger --- This is more of a question actually! Did you have in mind that data is not initialized here? If so, please drop this patch. This is just in case you implic