diff options
author | Christophe Ricard <christophe.ricard@gmail.com> | 2016-05-04 21:06:22 +0200 |
---|---|---|
committer | Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com> | 2016-06-25 17:26:35 +0300 |
commit | d2efee6e3ac8f5967e13f39bc8daaa81f81486e7 (patch) | |
tree | 3f9cfd5a9836aa498d3774ac33845944a3e276b1 /drivers | |
parent | ec03c50b132d159352f118055a58f599366084f9 (diff) | |
download | linux-stable-d2efee6e3ac8f5967e13f39bc8daaa81f81486e7.tar.gz linux-stable-d2efee6e3ac8f5967e13f39bc8daaa81f81486e7.tar.bz2 linux-stable-d2efee6e3ac8f5967e13f39bc8daaa81f81486e7.zip |
tpm: Add include guards in tpm.h
Add missing include guards in tpm.h
Signed-off-by: Peter Huewe <peter.huewe@infineon.com>
Signed-off-by: Christophe Ricard <christophe-h.ricard@st.com>
Reviewed-by: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
Tested-by: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
Tested-by: Stefan Berger <stefanb@linux.vnet.ibm.com>
Reviewed-by: Stefan Berger <stefanb@linux.vnet.ibm.com>
Signed-off-by: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/char/tpm/tpm.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/char/tpm/tpm.h b/drivers/char/tpm/tpm.h index ff4e53cde70e..8890df205635 100644 --- a/drivers/char/tpm/tpm.h +++ b/drivers/char/tpm/tpm.h @@ -19,6 +19,10 @@ * License. * */ + +#ifndef __TPM_H__ +#define __TPM_H__ + #include <linux/module.h> #include <linux/delay.h> #include <linux/fs.h> @@ -528,3 +532,4 @@ extern unsigned long tpm2_calc_ordinal_duration(struct tpm_chip *, u32); extern int tpm2_do_selftest(struct tpm_chip *chip); extern int tpm2_gen_interrupt(struct tpm_chip *chip); extern int tpm2_probe(struct tpm_chip *chip); +#endif |