Skip to content

Commit

Permalink
[PATCH] m68knommu: fix clobber list in uCdimm/uCsimm helper asm
Browse files Browse the repository at this point in the history
Fix clobber list in uCsimm/uCdimm boot load helper asm.

Signed-off-by: Greg Ungerer <gerg@uclinux.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
  • Loading branch information
Greg Ungerer authored and Linus Torvalds committed Jun 28, 2006
1 parent 541960f commit 0aee77b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions include/asm-m68knommu/bootstd.h
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ type name(void) \
__asm__ __volatile__ ("trap #2" \
: "=g" (__res) \
: "0" (__res) \
: "%d0"); \
); \
__bsc_return(type,__res); \
}

Expand All @@ -64,7 +64,7 @@ type name(atype a) \
__asm__ __volatile__ ("trap #2" \
: "=g" (__res) \
: "0" (__res), "d" (__a) \
: "%d0"); \
); \
__bsc_return(type,__res); \
}

Expand All @@ -77,7 +77,7 @@ type name(atype a, btype b) \
__asm__ __volatile__ ("trap #2" \
: "=g" (__res) \
: "0" (__res), "d" (__a), "d" (__b) \
: "%d0"); \
); \
__bsc_return(type,__res); \
}

Expand All @@ -92,7 +92,7 @@ type name(atype a, btype b, ctype c) \
: "=g" (__res) \
: "0" (__res), "d" (__a), "d" (__b), \
"d" (__c) \
: "%d0"); \
); \
__bsc_return(type,__res); \
}

Expand All @@ -108,7 +108,7 @@ type name(atype a, btype b, ctype c, dtype d) \
: "=g" (__res) \
: "0" (__res), "d" (__a), "d" (__b), \
"d" (__c), "d" (__d) \
: "%d0"); \
); \
__bsc_return(type,__res); \
}

Expand All @@ -125,7 +125,7 @@ type name(atype a, btype b, ctype c, dtype d, etype e) \
: "=g" (__res) \
: "0" (__res), "d" (__a), "d" (__b), \
"d" (__c), "d" (__d), "d" (__e) \
: "%d0"); \
); \
__bsc_return(type,__res); \
}

Expand Down

0 comments on commit 0aee77b

Please sign in to comment.