X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=crypto%2Faes.c;h=5df92888ef5a81b78fc34482c6d7261eb586ab2d;hb=f8eeaaf4180334a8e5c3582fe62a5f8176a8c124;hp=d0dd7c3c52780180c8a5c542b2c3fd66542d5b75;hpb=1da177e4c3f41524e886b7f1b8a0c1fc7321cac2;p=linux-2.6 diff --git a/crypto/aes.c b/crypto/aes.c index d0dd7c3c52..5df92888ef 100644 --- a/crypto/aes.c +++ b/crypto/aes.c @@ -67,7 +67,7 @@ /* * #define byte(x, nr) ((unsigned char)((x) >> (nr*8))) */ -inline static u8 +static inline u8 byte(const u32 x, const unsigned n) { return x >> (n << 3);