X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=crypto%2Faes.c;h=5df92888ef5a81b78fc34482c6d7261eb586ab2d;hb=9189674026e86e624b1ef1b4eb430e9ad19f9641;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);