Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=72d068951ca3f5428a3149a604ea626d93eecffe
Commit:     72d068951ca3f5428a3149a604ea626d93eecffe
Parent:     75423b7ba5eacc0a003b19e51af6a38feeed43ee
Author:     Geoff Levand <[EMAIL PROTECTED]>
AuthorDate: Sat Jun 16 08:06:28 2007 +1000
Committer:  Paul Mackerras <[EMAIL PROTECTED]>
CommitDate: Thu Jun 28 19:16:47 2007 +1000

    [POWERPC] Add signed types to bootwrapper
    
    Add signed types to the powerpc zImage bootwrapper. These are needed by the
    PS3 hcall interface.
    
    Signed-off-by: Geoff Levand <[EMAIL PROTECTED]>
    Signed-off-by: Paul Mackerras <[EMAIL PROTECTED]>
---
 arch/powerpc/boot/types.h |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/arch/powerpc/boot/types.h b/arch/powerpc/boot/types.h
index 79d26e7..31393d1 100644
--- a/arch/powerpc/boot/types.h
+++ b/arch/powerpc/boot/types.h
@@ -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);     \
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to