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 'mfd-fixes-5.12' of git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd

Pull mfs fix from Lee Jones:
"Unconstify editable placeholder structures"

* tag 'mfd-fixes-5.12' of git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd:
mfd: intel_quark_i2c_gpio: Revert "Constify static struct resources"

+4 -2
+4 -2
drivers/mfd/intel_quark_i2c_gpio.c
··· 72 72 {} 73 73 }; 74 74 75 - static const struct resource intel_quark_i2c_res[] = { 75 + /* This is used as a place holder and will be modified at run-time */ 76 + static struct resource intel_quark_i2c_res[] = { 76 77 [INTEL_QUARK_IORES_MEM] = { 77 78 .flags = IORESOURCE_MEM, 78 79 }, ··· 86 85 .adr = MFD_ACPI_MATCH_I2C, 87 86 }; 88 87 89 - static const struct resource intel_quark_gpio_res[] = { 88 + /* This is used as a place holder and will be modified at run-time */ 89 + static struct resource intel_quark_gpio_res[] = { 90 90 [INTEL_QUARK_IORES_MEM] = { 91 91 .flags = IORESOURCE_MEM, 92 92 },