aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/char/tpm/tpm_tis.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/char/tpm/tpm_tis.c')
-rw-r--r--drivers/char/tpm/tpm_tis.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/char/tpm/tpm_tis.c b/drivers/char/tpm/tpm_tis.c
index 10cc44ceb5d..a1748621111 100644
--- a/drivers/char/tpm/tpm_tis.c
+++ b/drivers/char/tpm/tpm_tis.c
@@ -255,7 +255,7 @@ out:
255 return size; 255 return size;
256} 256}
257 257
258static int itpm; 258static bool itpm;
259module_param(itpm, bool, 0444); 259module_param(itpm, bool, 0444);
260MODULE_PARM_DESC(itpm, "Force iTPM workarounds (found on some Lenovo laptops)"); 260MODULE_PARM_DESC(itpm, "Force iTPM workarounds (found on some Lenovo laptops)");
261 261
@@ -500,7 +500,7 @@ static irqreturn_t tis_int_handler(int dummy, void *dev_id)
500 return IRQ_HANDLED; 500 return IRQ_HANDLED;
501} 501}
502 502
503static int interrupts = 1; 503static bool interrupts = 1;
504module_param(interrupts, bool, 0444); 504module_param(interrupts, bool, 0444);
505MODULE_PARM_DESC(interrupts, "Enable interrupts"); 505MODULE_PARM_DESC(interrupts, "Enable interrupts");
506 506
@@ -828,7 +828,7 @@ static struct platform_driver tis_drv = {
828 828
829static struct platform_device *pdev; 829static struct platform_device *pdev;
830 830
831static int force; 831static bool force;
832module_param(force, bool, 0444); 832module_param(force, bool, 0444);
833MODULE_PARM_DESC(force, "Force device probe rather than using ACPI entry"); 833MODULE_PARM_DESC(force, "Force device probe rather than using ACPI entry");
834static int __init init_tis(void) 834static int __init init_tis(void)