On Sun, Nov 11, 2012 at 03:41:25PM +0000, Malcolm Priestley wrote: > > After this patch all BYTE/WORD/DWORD types can be replaced with the appropriate u sizes. > > Signed-off-by: Malcolm Priestley <tvboxspy@xxxxxxxxx> > --- > drivers/staging/vt6656/ttype.h | 10 +++++----- > 1 file changed, 5 insertions(+), 5 deletions(-) > > diff --git a/drivers/staging/vt6656/ttype.h b/drivers/staging/vt6656/ttype.h > index 0f70562c..dfbf747 100644 > --- a/drivers/staging/vt6656/ttype.h > +++ b/drivers/staging/vt6656/ttype.h > @@ -44,9 +44,9 @@ typedef int BOOL; > > /****** Simple typedefs ***************************************************/ > > -typedef unsigned char BYTE; // 8-bit > -typedef unsigned short WORD; // 16-bit > -typedef unsigned long DWORD; // 32-bit > +typedef u8 BYTE; > +typedef u16 WORD; > +typedef u32 DWORD; That's good, but in the end, we want to get rid of BYTE, WORD, and DWORD usages in this driver, can you just start replacing them with the proper types? thanks, greg k-h -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html