Re: [PATCH] s390: provide default ioremap and iounmap declaration

2017-05-29 Thread Sebastian Ott
Hi, On Fri, 26 May 2017, Logan Gunthorpe wrote: > On 26/05/17 06:38 AM, Heiko Carstens wrote: > > On Thu, May 25, 2017 at 09:43:48AM -0600, Logan Gunthorpe wrote: > > I'd rather move the #ifdef CONFIG_PCI than implementing this yet another > > time (see patch below). But I'll leave that up to Seba

Re: [PATCH] s390: provide default ioremap and iounmap declaration

2017-05-26 Thread Logan Gunthorpe
On 26/05/17 06:38 AM, Heiko Carstens wrote: > On Thu, May 25, 2017 at 09:43:48AM -0600, Logan Gunthorpe wrote: > I'd rather move the #ifdef CONFIG_PCI than implementing this yet another > time (see patch below). But I'll leave that up to Sebastian. I'd be more than happy with this change. Let me

Re: [PATCH] s390: provide default ioremap and iounmap declaration

2017-05-26 Thread Heiko Carstens
On Thu, May 25, 2017 at 09:43:48AM -0600, Logan Gunthorpe wrote: > Add a default ioremap function which was not provided in all > circumstances. (Only when CONFIG_PCI was set). > > I have designs to use them in scatterlist.c where they'd likely never > be called without CONFIG_PCI set, but it is n

[PATCH] s390: provide default ioremap and iounmap declaration

2017-05-25 Thread Logan Gunthorpe
Add a default ioremap function which was not provided in all circumstances. (Only when CONFIG_PCI was set). I have designs to use them in scatterlist.c where they'd likely never be called without CONFIG_PCI set, but it is needed to compile. Thus, if the function is ever hit it returns NULL. Signe