Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 329746
b: refs/heads/master
c: 312639b
h: refs/heads/master
v: v3
  • Loading branch information
Jussi Kivilinna authored and Herbert Xu committed Sep 6, 2012
1 parent ef45c7d commit 39d3cd9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 35434c5fb7919bbc1112d9da2c19b5ea79fb7850
refs/heads/master: 312639bb1bc65abca243a6cee6e5364663d2dd7a
6 changes: 3 additions & 3 deletions trunk/crypto/cast6_generic.c
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,7 @@ static const u8 Tr[4][8] = {
};

/* forward octave */
static void W(u32 *key, unsigned int i)
static inline void W(u32 *key, unsigned int i)
{
u32 I;
key[6] ^= F1(key[7], Tr[i % 4][0], Tm[i][0]);
Expand Down Expand Up @@ -434,7 +434,7 @@ int cast6_setkey(struct crypto_tfm *tfm, const u8 *key, unsigned int keylen)
EXPORT_SYMBOL_GPL(cast6_setkey);

/*forward quad round*/
static void Q(u32 *block, u8 *Kr, u32 *Km)
static inline void Q(u32 *block, u8 *Kr, u32 *Km)
{
u32 I;
block[2] ^= F1(block[3], Kr[0], Km[0]);
Expand All @@ -444,7 +444,7 @@ static void Q(u32 *block, u8 *Kr, u32 *Km)
}

/*reverse quad round*/
static void QBAR(u32 *block, u8 *Kr, u32 *Km)
static inline void QBAR(u32 *block, u8 *Kr, u32 *Km)
{
u32 I;
block[3] ^= F1(block[0], Kr[3], Km[3]);
Expand Down

0 comments on commit 39d3cd9

Please sign in to comment.