You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
dmi: Mark all struct dmi_system_id instances const
... and __initconst if applicable. Based on similar work for an older kernel in the Grsecurity patch. [JD: fix toshiba-wmi build] [JD: add htcpen] [JD: move __initconst where checkscript wants it] Signed-off-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Jean Delvare <jdelvare@suse.de>
This commit is contained in:
committed by
Jean Delvare
parent
46c1e79fee
commit
6faadbbb7f
@@ -1373,7 +1373,7 @@ static void __init acpi_reduced_hw_init(void)
|
||||
* If your system is blacklisted here, but you find that acpi=force
|
||||
* works for you, please contact linux-acpi@vger.kernel.org
|
||||
*/
|
||||
static struct dmi_system_id __initdata acpi_dmi_table[] = {
|
||||
static const struct dmi_system_id acpi_dmi_table[] __initconst = {
|
||||
/*
|
||||
* Boxes that need ACPI disabled
|
||||
*/
|
||||
@@ -1448,7 +1448,7 @@ static struct dmi_system_id __initdata acpi_dmi_table[] = {
|
||||
};
|
||||
|
||||
/* second table for DMI checks that should run after early-quirks */
|
||||
static struct dmi_system_id __initdata acpi_dmi_table_late[] = {
|
||||
static const struct dmi_system_id acpi_dmi_table_late[] __initconst = {
|
||||
/*
|
||||
* HP laptops which use a DSDT reporting as HP/SB400/10000,
|
||||
* which includes some code which overrides all temperature
|
||||
|
||||
@@ -2043,7 +2043,7 @@ static int __init swab_apm_power_in_minutes(const struct dmi_system_id *d)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static struct dmi_system_id __initdata apm_dmi_table[] = {
|
||||
static const struct dmi_system_id apm_dmi_table[] __initconst = {
|
||||
{
|
||||
print_if_true,
|
||||
KERN_WARNING "IBM T23 - BIOS 1.03b+ and controller firmware 1.02+ may be needed for Linux APM.",
|
||||
|
||||
@@ -58,7 +58,7 @@ static int __init dmi_io_delay_0xed_port(const struct dmi_system_id *id)
|
||||
* Quirk table for systems that misbehave (lock up, etc.) if port
|
||||
* 0x80 is used:
|
||||
*/
|
||||
static struct dmi_system_id __initdata io_delay_0xed_port_dmi_table[] = {
|
||||
static const struct dmi_system_id io_delay_0xed_port_dmi_table[] __initconst = {
|
||||
{
|
||||
.callback = dmi_io_delay_0xed_port,
|
||||
.ident = "Compaq Presario V6000",
|
||||
|
||||
@@ -150,7 +150,7 @@ static int __init set_kbd_reboot(const struct dmi_system_id *d)
|
||||
/*
|
||||
* This is a single dmi_table handling all reboot quirks.
|
||||
*/
|
||||
static struct dmi_system_id __initdata reboot_dmi_table[] = {
|
||||
static const struct dmi_system_id reboot_dmi_table[] __initconst = {
|
||||
|
||||
/* Acer */
|
||||
{ /* Handle reboot issue on Acer Aspire one */
|
||||
|
||||
+1
-1
@@ -1092,7 +1092,7 @@ static int __init fix_acer_tm360_irqrouting(const struct dmi_system_id *d)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static struct dmi_system_id __initdata pciirq_dmi_table[] = {
|
||||
static const struct dmi_system_id pciirq_dmi_table[] __initconst = {
|
||||
{
|
||||
.callback = fix_broken_hp_bios_irq9,
|
||||
.ident = "HP Pavilion N5400 Series Laptop",
|
||||
|
||||
@@ -428,7 +428,7 @@ static int msr_initialize_bdw(const struct dmi_system_id *d)
|
||||
return msr_init_context(bdw_msr_id, ARRAY_SIZE(bdw_msr_id));
|
||||
}
|
||||
|
||||
static struct dmi_system_id msr_save_dmi_table[] = {
|
||||
static const struct dmi_system_id msr_save_dmi_table[] = {
|
||||
{
|
||||
.callback = msr_initialize_bdw,
|
||||
.ident = "BROADWELL BDX_EP",
|
||||
|
||||
@@ -418,7 +418,7 @@ static int video_set_report_key_events(const struct dmi_system_id *id)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static struct dmi_system_id video_dmi_table[] = {
|
||||
static const struct dmi_system_id video_dmi_table[] = {
|
||||
/*
|
||||
* Broken _BQC workaround http://bugzilla.kernel.org/show_bug.cgi?id=13121
|
||||
*/
|
||||
|
||||
@@ -30,7 +30,7 @@
|
||||
|
||||
#include "internal.h"
|
||||
|
||||
static struct dmi_system_id acpi_rev_dmi_table[] __initdata;
|
||||
static const struct dmi_system_id acpi_rev_dmi_table[] __initconst;
|
||||
|
||||
/*
|
||||
* POLICY: If *anything* doesn't work, put it on the blacklist.
|
||||
@@ -89,7 +89,7 @@ static int __init dmi_enable_rev_override(const struct dmi_system_id *d)
|
||||
}
|
||||
#endif
|
||||
|
||||
static struct dmi_system_id acpi_rev_dmi_table[] __initdata = {
|
||||
static const struct dmi_system_id acpi_rev_dmi_table[] __initconst = {
|
||||
#ifdef CONFIG_ACPI_REV_OVERRIDE_POSSIBLE
|
||||
/*
|
||||
* DELL XPS 13 (2015) switches sound between HDA and I2S
|
||||
|
||||
+2
-2
@@ -67,7 +67,7 @@ static int set_copy_dsdt(const struct dmi_system_id *id)
|
||||
}
|
||||
#endif
|
||||
|
||||
static struct dmi_system_id dsdt_dmi_table[] __initdata = {
|
||||
static const struct dmi_system_id dsdt_dmi_table[] __initconst = {
|
||||
/*
|
||||
* Invoke DSDT corruption work-around on all Toshiba Satellite.
|
||||
* https://bugzilla.kernel.org/show_bug.cgi?id=14679
|
||||
@@ -83,7 +83,7 @@ static struct dmi_system_id dsdt_dmi_table[] __initdata = {
|
||||
{}
|
||||
};
|
||||
#else
|
||||
static struct dmi_system_id dsdt_dmi_table[] __initdata = {
|
||||
static const struct dmi_system_id dsdt_dmi_table[] __initconst = {
|
||||
{}
|
||||
};
|
||||
#endif
|
||||
|
||||
+1
-1
@@ -1809,7 +1809,7 @@ static int ec_honor_ecdt_gpe(const struct dmi_system_id *id)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static struct dmi_system_id ec_dmi_table[] __initdata = {
|
||||
static const struct dmi_system_id ec_dmi_table[] __initconst = {
|
||||
{
|
||||
ec_correct_ecdt, "MSI MS-171F", {
|
||||
DMI_MATCH(DMI_SYS_VENDOR, "Micro-Star"),
|
||||
|
||||
+1
-1
@@ -312,7 +312,7 @@ static int __init dmi_disable_osi_win8(const struct dmi_system_id *d)
|
||||
* Note that _OSI("Linux")/_OSI("Darwin") determined here can be overridden
|
||||
* by acpi_osi=!Linux/acpi_osi=!Darwin command line options.
|
||||
*/
|
||||
static struct dmi_system_id acpi_osi_dmi_table[] __initdata = {
|
||||
static const struct dmi_system_id acpi_osi_dmi_table[] __initconst = {
|
||||
{
|
||||
.callback = dmi_disable_osi_vista,
|
||||
.ident = "Fujitsu Siemens",
|
||||
|
||||
@@ -174,7 +174,7 @@ static int do_sta_before_sun(const struct dmi_system_id *d)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static struct dmi_system_id acpi_pci_slot_dmi_table[] __initdata = {
|
||||
static const struct dmi_system_id acpi_pci_slot_dmi_table[] __initconst = {
|
||||
/*
|
||||
* Fujitsu Primequest machines will return 1023 to indicate an
|
||||
* error if the _SUN method is evaluated on SxFy objects that
|
||||
|
||||
@@ -173,7 +173,7 @@ static int __init set_no_mwait(const struct dmi_system_id *id)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static struct dmi_system_id processor_idle_dmi_table[] __initdata = {
|
||||
static const struct dmi_system_id processor_idle_dmi_table[] __initconst = {
|
||||
{
|
||||
set_no_mwait, "Extensa 5220", {
|
||||
DMI_MATCH(DMI_BIOS_VENDOR, "Phoenix Technologies LTD"),
|
||||
|
||||
@@ -160,7 +160,7 @@ static int __init init_nvs_nosave(const struct dmi_system_id *d)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static struct dmi_system_id acpisleep_dmi_table[] __initdata = {
|
||||
static const struct dmi_system_id acpisleep_dmi_table[] __initconst = {
|
||||
{
|
||||
.callback = init_old_suspend_ordering,
|
||||
.ident = "Abit KN9 (nForce4 variant)",
|
||||
|
||||
@@ -1209,7 +1209,7 @@ static int thermal_psv(const struct dmi_system_id *d) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
static struct dmi_system_id thermal_dmi_table[] __initdata = {
|
||||
static const struct dmi_system_id thermal_dmi_table[] __initconst = {
|
||||
/*
|
||||
* Award BIOS on this AOpen makes thermal control almost worthless.
|
||||
* http://bugzilla.kernel.org/show_bug.cgi?id=8842
|
||||
|
||||
@@ -1491,7 +1491,7 @@ static struct platform_driver sonypi_driver = {
|
||||
|
||||
static struct platform_device *sonypi_platform_device;
|
||||
|
||||
static struct dmi_system_id __initdata sonypi_dmi_table[] = {
|
||||
static const struct dmi_system_id sonypi_dmi_table[] __initconst = {
|
||||
{
|
||||
.ident = "Sony Vaio",
|
||||
.matches = {
|
||||
|
||||
@@ -578,7 +578,7 @@ static int acer_cpufreq_pst(const struct dmi_system_id *d)
|
||||
* A BIOS update is all that can save them.
|
||||
* Mention this, and disable cpufreq.
|
||||
*/
|
||||
static struct dmi_system_id powernow_dmi_table[] = {
|
||||
static const struct dmi_system_id powernow_dmi_table[] = {
|
||||
{
|
||||
.callback = acer_cpufreq_pst,
|
||||
.ident = "Acer Aspire",
|
||||
|
||||
@@ -709,7 +709,7 @@ static u32 __init hash_oem_table_id(char s[8])
|
||||
return local_hash_64(input, 32);
|
||||
}
|
||||
|
||||
static struct dmi_system_id gsmi_dmi_table[] __initdata = {
|
||||
static const struct dmi_system_id gsmi_dmi_table[] __initconst = {
|
||||
{
|
||||
.ident = "Google Board",
|
||||
.matches = {
|
||||
|
||||
@@ -126,7 +126,7 @@ static bool memconsole_ebda_init(void)
|
||||
return false;
|
||||
}
|
||||
|
||||
static struct dmi_system_id memconsole_dmi_table[] __initdata = {
|
||||
static const struct dmi_system_id memconsole_dmi_table[] __initconst = {
|
||||
{
|
||||
.ident = "Google Board",
|
||||
.matches = {
|
||||
|
||||
@@ -171,7 +171,7 @@ nvkm_gpio_fini(struct nvkm_subdev *subdev, bool suspend)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static struct dmi_system_id gpio_reset_ids[] = {
|
||||
static const struct dmi_system_id gpio_reset_ids[] = {
|
||||
{
|
||||
.ident = "Apple Macbook 10,1",
|
||||
.matches = {
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user