forked from openwrt/openwrt
-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/log/?h=v6.11.2 Signed-off-by: Marty Jones <[email protected]>
- Loading branch information
Showing
5 changed files
with
9 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
LINUX_VERSION-6.11 = | ||
LINUX_KERNEL_HASH-6.11 = 55d2c6c025ebc27810c748d66325dd5bc601e8d32f8581d9e77673529bdacb2e | ||
LINUX_VERSION-6.11 = .2 | ||
LINUX_KERNEL_HASH-6.11.2 = ec9ef7a0b9cebb55940e1ef87a1f9e1004b10456a119dc386bb3e565b0d39c42 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,15 +25,15 @@ Signed-off-by: Gabor Juhos <[email protected]> | |
|
||
--- a/drivers/pci/quirks.c | ||
+++ b/drivers/pci/quirks.c | ||
@@ -300,6 +300,7 @@ static void quirk_mmio_always_on(struct | ||
@@ -313,6 +313,7 @@ static void quirk_mmio_always_on(struct | ||
DECLARE_PCI_FIXUP_CLASS_EARLY(PCI_ANY_ID, PCI_ANY_ID, | ||
PCI_CLASS_BRIDGE_HOST, 8, quirk_mmio_always_on); | ||
|
||
+#ifndef CONFIG_PCI_DISABLE_COMMON_QUIRKS | ||
/* | ||
* The Mellanox Tavor device gives false positive parity errors. Disable | ||
* parity error reporting. | ||
@@ -3495,6 +3496,8 @@ DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_I | ||
@@ -3508,6 +3509,8 @@ DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_I | ||
DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x65f9, quirk_intel_mc_errata); | ||
DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x65fa, quirk_intel_mc_errata); | ||
|
||
|
@@ -42,7 +42,7 @@ Signed-off-by: Gabor Juhos <[email protected]> | |
/* | ||
* Ivytown NTB BAR sizes are misreported by the hardware due to an erratum. | ||
* To work around this, query the size it should be configured to by the | ||
@@ -3520,6 +3523,8 @@ static void quirk_intel_ntb(struct pci_d | ||
@@ -3533,6 +3536,8 @@ static void quirk_intel_ntb(struct pci_d | ||
DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x0e08, quirk_intel_ntb); | ||
DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x0e0d, quirk_intel_ntb); | ||
|
||
|
@@ -51,7 +51,7 @@ Signed-off-by: Gabor Juhos <[email protected]> | |
/* | ||
* Some BIOS implementations leave the Intel GPU interrupts enabled, even | ||
* though no one is handling them (e.g., if the i915 driver is never | ||
@@ -3558,6 +3563,8 @@ DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_IN | ||
@@ -3571,6 +3576,8 @@ DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_IN | ||
DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_INTEL, 0x010a, disable_igfx_irq); | ||
DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_INTEL, 0x0152, disable_igfx_irq); | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ Signed-off-by: Álvaro Fernández Rojas <[email protected]> | |
|
||
--- a/drivers/char/hw_random/bcm2835-rng.c | ||
+++ b/drivers/char/hw_random/bcm2835-rng.c | ||
@@ -167,6 +167,7 @@ static int bcm2835_rng_probe(struct plat | ||
@@ -169,6 +169,7 @@ static int bcm2835_rng_probe(struct plat | ||
priv->rng.init = bcm2835_rng_init; | ||
priv->rng.read = bcm2835_rng_read; | ||
priv->rng.cleanup = bcm2835_rng_cleanup; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 +26,7 @@ Acked-by: Krzysztof Kozlowski <[email protected]> | |
|
||
--- a/drivers/char/hw_random/Kconfig | ||
+++ b/drivers/char/hw_random/Kconfig | ||
@@ -572,6 +572,20 @@ config HW_RANDOM_JH7110 | ||
@@ -573,6 +573,20 @@ config HW_RANDOM_JH7110 | ||
To compile this driver as a module, choose M here. | ||
The module will be called jh7110-trng. | ||
|
||
|