提交 d997d88e 编写于 作者: M Mathias Krause 提交者: Matthew Garrett

alienware-wmi: Mark DMI table as __initconst

The DMI table is only ever used during initialization. Mark it as
__initconst so its memory can be released appropriately. In turn, the
callback function can be marked with __init, too.
Signed-off-by: NMathias Krause <minipli@googlemail.com>
Signed-off-by: NMatthew Garrett <matthew.garrett@nebula.com>
上级 80f65558
...@@ -71,13 +71,13 @@ static struct quirk_entry quirk_x51_family = { ...@@ -71,13 +71,13 @@ static struct quirk_entry quirk_x51_family = {
.num_zones = 3, .num_zones = 3,
}; };
static int dmi_matched(const struct dmi_system_id *dmi) static int __init dmi_matched(const struct dmi_system_id *dmi)
{ {
quirks = dmi->driver_data; quirks = dmi->driver_data;
return 1; return 1;
} }
static struct dmi_system_id alienware_quirks[] = { static const struct dmi_system_id alienware_quirks[] __initconst = {
{ {
.callback = dmi_matched, .callback = dmi_matched,
.ident = "Alienware X51 R1", .ident = "Alienware X51 R1",
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册