Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'tpmdd-v6.5-rc7' of git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd

Pull tpm irq fixes from Jarkko Sakkinen:
"These change the probing and enabling of interrupts advertised by the
platform firmware (i.e. ACPI, Device Tree) to be an opt-in for tpm_tis,
which can be set from the kernel command-line.

Note that the opt-in change is only for the PC MMIO tpm_tis module. It
does not affect other similar drivers using IRQs, like tpm_tis_spi and
synquacer"

* tag 'tpmdd-v6.5-rc7' of git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd:
tpm_tis: Opt-in interrupts
tpm: tpm_tis: Fix UPX-i11 DMI_MATCH condition

+2 -2
+2 -2
drivers/char/tpm/tpm_tis.c
··· 89 89 tpm_tis_flush(iobase); 90 90 } 91 91 92 - static int interrupts = -1; 92 + static int interrupts; 93 93 module_param(interrupts, int, 0444); 94 94 MODULE_PARM_DESC(interrupts, "Enable interrupts"); 95 95 ··· 183 183 .ident = "UPX-TGL", 184 184 .matches = { 185 185 DMI_MATCH(DMI_SYS_VENDOR, "AAEON"), 186 - DMI_MATCH(DMI_PRODUCT_VERSION, "UPX-TGL"), 186 + DMI_MATCH(DMI_PRODUCT_NAME, "UPX-TGL01"), 187 187 }, 188 188 }, 189 189 {}