diff options
author | Ruben Roy <[email protected]> | 2017-09-26 13:58:57 +0000 |
---|---|---|
committer | Jarkko Sakkinen <[email protected]> | 2017-10-18 18:28:49 +0300 |
commit | 2d56c71835acc9d69b402f7027091920306daf83 (patch) | |
tree | 5baa39f9985b524e8d1ba42229abdb4c81d86ff3 | |
parent | 1a7a9b26c69d92582de53061b3a18740043bef29 (diff) |
tpm: fix duplicate inline declaration specifier
This commit fixes the duplicate inline declaration specifier in
tpm2_rc_value which caused a warning
Signed-off-by: Ruben Roy <[email protected]>
Reviewed-by: Jarkko Sakkinen <[email protected]>
Signed-off-by: Jarkko Sakkinen <[email protected]>
-rw-r--r-- | drivers/char/tpm/tpm.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/char/tpm/tpm.h b/drivers/char/tpm/tpm.h index b50e92fbca31..528cffbd49d3 100644 --- a/drivers/char/tpm/tpm.h +++ b/drivers/char/tpm/tpm.h @@ -544,7 +544,7 @@ static inline void tpm_add_ppi(struct tpm_chip *chip) } #endif -static inline inline u32 tpm2_rc_value(u32 rc) +static inline u32 tpm2_rc_value(u32 rc) { return (rc & BIT(7)) ? rc & 0xff : rc; } |