common: remove duplicate typedef for uchar
authorHeinrich Schuchardt <xypron.glpk@gmx.de>
Tue, 10 Dec 2019 06:43:33 +0000 (07:43 +0100)
committerTom Rini <trini@konsulko.com>
Fri, 13 Dec 2019 18:01:53 +0000 (13:01 -0500)
With commit 37db55b7e9db ("linux/types.h: fix typo unchar") we have a
duplicate typedef for uchar. As linux/types.h is included in common.h we
don't need another typedef for uchar there.

Fixes: 37db55b7e9db ("linux/types.h: fix typo unchar")
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Reviewed-by: Joe Hershberger <joe.hershberger@ni.com>
include/common.h

index 8b37b58747474cad67d0ac19cfe0cc66bf27b4c0..52c02185f40e0ead25d761ed1c685a56de33f74a 100644 (file)
@@ -15,7 +15,6 @@
 
 #ifndef __ASSEMBLY__           /* put C only stuff in this section */
 
-typedef unsigned char          uchar;
 typedef volatile unsigned long vu_long;
 typedef volatile unsigned short vu_short;
 typedef volatile unsigned char vu_char;