Skip to content

Commit

Permalink
m68knommu: relax IO_SPACE_LIMIT setting
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Greg Ungerer committed Sep 15, 2009
1 parent 4980296 commit fe84c10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/m68k/include/asm/io_no.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Expand Down

0 comments on commit fe84c10

Please sign in to comment.