Skip to content

Commit

Permalink
[POWERPC] Add signed types to bootwrapper
Browse files Browse the repository at this point in the history
Add signed types to the powerpc zImage bootwrapper. These are needed by the
PS3 hcall interface.

Signed-off-by: Geoff Levand <geoffrey.levand@am.sony.com>
Signed-off-by: Paul Mackerras <paulus@samba.org>
  • Loading branch information
Geoff Levand authored and Paul Mackerras committed Jun 28, 2007
1 parent 75423b7 commit 72d0689
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions arch/powerpc/boot/types.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ typedef unsigned char u8;
typedef unsigned short u16;
typedef unsigned int u32;
typedef unsigned long long u64;
typedef signed char s8;
typedef short s16;
typedef int s32;
typedef long long s64;

#define min(x,y) ({ \
typeof(x) _x = (x); \
Expand Down

0 comments on commit 72d0689

Please sign in to comment.