Re: [PATCH 0/3] ata: add m68k/Atari Falcon PATA support

2017-01-19 Thread Michael Schmitz
Hi Finn, Am 15.01.2017 um 17:42 schrieb Finn Thain: >> No, we can't check either FDC or SCSI interrupts (or indeed any chip >> registers) without touching the ST-DMA. The moment we select a FDC or >> SCSI register for read, DMA is terminated no questions asked. >> > > Perhaps we can convert

Re: [PATCH 2/2] m68k: replaced gcc specific macros with ones from compiler.h

2017-01-19 Thread Geert Uytterhoeven
On Thu, Jan 19, 2017 at 9:31 PM, kbuild test robot <l...@intel.com> wrote: > Hi Gideon, > > [auto build test ERROR on m68k/for-next] > [also build test ERROR on v4.10-rc4 next-20170119] > [if your patch is applied to the wrong git tree, please drop us a note to > help imp

Re: [PATCH 2/2] m68k: replaced gcc specific macros with ones from compiler.h

2017-01-19 Thread Gideon D'souza
auto build test ERROR on m68k/for-next] > [also build test ERROR on v4.10-rc4 next-20170119] > [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/Gideon-Israel-Dsouza/compi

Re: [PATCH 2/2] m68k: replaced gcc specific macros with ones from compiler.h

2017-01-19 Thread kbuild test robot
Hi Gideon, [auto build test ERROR on m68k/for-next] [also build test ERROR on v4.10-rc4 next-20170119] [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/Gideon-Israel-Dsouza/compiler-gcc-h-Added

Re: [PATCH 2/2] m68k: replaced gcc specific macros with ones from compiler.h

2017-01-19 Thread kbuild test robot
Hi Gideon, [auto build test ERROR on m68k/for-next] [also build test ERROR on v4.10-rc4 next-20170119] [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/Gideon-Israel-Dsouza/compiler-gcc-h-Added

[PATCH 2/2] m68k: replaced gcc specific macros with ones from compiler.h

2017-01-19 Thread Gideon Israel Dsouza
There is which provides macros for various gcc specific constructs. Eg: __weak for __attribute__((weak)). I've cleaned all instances of gcc specific attributes with the right macros for all files under /arch/m68k This patch depends on the previous with changes in /include/linux/compiler-gcc.h

[PATCH 1/2] compiler-gcc.h: Added new macro for gcc attribute

2017-01-19 Thread Gideon Israel Dsouza
Added __mode(x) into compiler-gcc.h as part of a cleanup task I've taken up, to replace gcc specific attributes with macros. Last accepted patch I sent into linux-next for crypto: d8c34b949d8c: crypto: Replaced gcc specific attributes with macros from compiler.h The last commit of this task that