Re: [PATCH] mdt: slram: use memremap() instead of ioremap()

2017-10-19 Thread Roy Franz
On Thu, Oct 19, 2017 at 8:37 AM, Christoph Hellwig wrote: > s/mdt/mtd/ in the subject? Yup, I'll repost a fixed version.

Re: [PATCH] mdt: slram: use memremap() instead of ioremap()

2017-10-19 Thread Roy Franz
On Thu, Oct 19, 2017 at 8:37 AM, Christoph Hellwig wrote: > s/mdt/mtd/ in the subject? Yup, I'll repost a fixed version.

Re: [PATCH] mdt: slram: use memremap() instead of ioremap()

2017-10-19 Thread Christoph Hellwig
s/mdt/mtd/ in the subject?

Re: [PATCH] mdt: slram: use memremap() instead of ioremap()

2017-10-19 Thread Christoph Hellwig
s/mdt/mtd/ in the subject?

Re: [PATCH] mdt: slram: use memremap() instead of ioremap()

2017-10-17 Thread David Daney
On 10/17/2017 01:56 PM, Roy Franz wrote: Convert slram to use memremap() to map the memory it uses to back an MTD device, as this is the proper interface for mapping memory. This change enables normal memory to be used to back an MTD device on arm64, as arm64 prevents ioremap() being used on

Re: [PATCH] mdt: slram: use memremap() instead of ioremap()

2017-10-17 Thread David Daney
On 10/17/2017 01:56 PM, Roy Franz wrote: Convert slram to use memremap() to map the memory it uses to back an MTD device, as this is the proper interface for mapping memory. This change enables normal memory to be used to back an MTD device on arm64, as arm64 prevents ioremap() being used on

Re: [PATCH] mdt: slram: use memremap() instead of ioremap()

2017-10-17 Thread Ard Biesheuvel
On 17 October 2017 at 21:56, Roy Franz wrote: > Convert slram to use memremap() to map the memory it uses to back an MTD > device, as this is the proper interface for mapping memory. This change > enables normal memory to be used to back an MTD device on arm64, as arm64 >

Re: [PATCH] mdt: slram: use memremap() instead of ioremap()

2017-10-17 Thread Ard Biesheuvel
On 17 October 2017 at 21:56, Roy Franz wrote: > Convert slram to use memremap() to map the memory it uses to back an MTD > device, as this is the proper interface for mapping memory. This change > enables normal memory to be used to back an MTD device on arm64, as arm64 > prevents ioremap() being

[PATCH] mdt: slram: use memremap() instead of ioremap()

2017-10-17 Thread Roy Franz
Convert slram to use memremap() to map the memory it uses to back an MTD device, as this is the proper interface for mapping memory. This change enables normal memory to be used to back an MTD device on arm64, as arm64 prevents ioremap() being used on normal memory. Signed-off-by: Roy Franz

[PATCH] mdt: slram: use memremap() instead of ioremap()

2017-10-17 Thread Roy Franz
Convert slram to use memremap() to map the memory it uses to back an MTD device, as this is the proper interface for mapping memory. This change enables normal memory to be used to back an MTD device on arm64, as arm64 prevents ioremap() being used on normal memory. Signed-off-by: Roy Franz ---