mirror of
https://github.com/torvalds/linux.git
synced 2024-11-15 08:31:55 +00:00
m68knommu: relax IO_SPACE_LIMIT setting
There is really no limit to the addresses which can be used by the in*() and out*() family of IO space calls in m68k non-MMU environments. So don't impose an artificial address limit, allow the full 32bit range. Signed-off-by: Greg Ungerer <gerg@uclinux.org>
This commit is contained in:
parent
49802967cb
commit
fe84c1087a
@ -134,7 +134,7 @@ static inline void io_insl(unsigned int addr, void *buf, int len)
|
||||
#define insw(a,b,l) io_insw(a,b,l)
|
||||
#define insl(a,b,l) io_insl(a,b,l)
|
||||
|
||||
#define IO_SPACE_LIMIT 0xffff
|
||||
#define IO_SPACE_LIMIT 0xffffffff
|
||||
|
||||
|
||||
/* Values for nocacheflag and cmode */
|
||||
|
Loading…
Reference in New Issue
Block a user