aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/char/tpm/tpm.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/char/tpm/tpm.c')
-rw-r--r--drivers/char/tpm/tpm.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/char/tpm/tpm.c b/drivers/char/tpm/tpm.c
index 47c2d2763456..068c816e6942 100644
--- a/drivers/char/tpm/tpm.c
+++ b/drivers/char/tpm/tpm.c
@@ -24,6 +24,7 @@
24 */ 24 */
25 25
26#include <linux/poll.h> 26#include <linux/poll.h>
27#include <linux/slab.h>
27#include <linux/mutex.h> 28#include <linux/mutex.h>
28#include <linux/spinlock.h> 29#include <linux/spinlock.h>
29 30
@@ -31,7 +32,7 @@
31 32
32enum tpm_const { 33enum tpm_const {
33 TPM_MINOR = 224, /* officially assigned */ 34 TPM_MINOR = 224, /* officially assigned */
34 TPM_BUFSIZE = 2048, 35 TPM_BUFSIZE = 4096,
35 TPM_NUM_DEVICES = 256, 36 TPM_NUM_DEVICES = 256,
36}; 37};
37 38