diff options
author | Mathias Krause <minipli@googlemail.com> | 2014-08-31 10:57:09 +0200 |
---|---|---|
committer | Tejun Heo <tj@kernel.org> | 2014-08-31 05:36:46 -0400 |
commit | 1bd06867f7f168273c80ba10ce4025a97be98305 (patch) | |
tree | a844b0103db194e2308a1fceabb640526857f6ab /drivers/ata | |
parent | 6bb86fefa086faba7b60bb452300b76a47cde1a5 (diff) |
ahci: ahci_p5wdh_workaround - constify DMI table
The DMI table does not need to be written to, make it r/o.
Signed-off-by: Mathias Krause <minipli@googlemail.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
Diffstat (limited to 'drivers/ata')
-rw-r--r-- | drivers/ata/ahci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/ata/ahci.c b/drivers/ata/ahci.c index a29f8012fb08..c880699a7d0b 100644 --- a/drivers/ata/ahci.c +++ b/drivers/ata/ahci.c @@ -780,7 +780,7 @@ static void ahci_pci_print_info(struct ata_host *host) */ static void ahci_p5wdh_workaround(struct ata_host *host) { - static struct dmi_system_id sysids[] = { + static const struct dmi_system_id sysids[] = { { .ident = "P5W DH Deluxe", .matches = { |