Commit 609d4bc949a9175a6c8ba9dc1b6fdb4d9dab0427

Authored by Jan Beulich
Committed by Len Brown
1 parent f240729832

ACPI: constify tables in pci_irq.c

Signed-off-by: Jan Beulich <jbeulich@novell.com>
Signed-off-by: Len Brown <len.brown@intel.com>

Showing 1 changed file with 8 additions and 8 deletions Side-by-side Diff

drivers/acpi/pci_irq.c
... ... @@ -86,7 +86,7 @@
86 86 }
87 87  
88 88 /* http://bugzilla.kernel.org/show_bug.cgi?id=4773 */
89   -static struct dmi_system_id medion_md9580[] = {
  89 +static const struct dmi_system_id medion_md9580[] = {
90 90 {
91 91 .ident = "Medion MD9580-F laptop",
92 92 .matches = {
... ... @@ -98,7 +98,7 @@
98 98 };
99 99  
100 100 /* http://bugzilla.kernel.org/show_bug.cgi?id=5044 */
101   -static struct dmi_system_id dell_optiplex[] = {
  101 +static const struct dmi_system_id dell_optiplex[] = {
102 102 {
103 103 .ident = "Dell Optiplex GX1",
104 104 .matches = {
... ... @@ -110,7 +110,7 @@
110 110 };
111 111  
112 112 /* http://bugzilla.kernel.org/show_bug.cgi?id=10138 */
113   -static struct dmi_system_id hp_t5710[] = {
  113 +static const struct dmi_system_id hp_t5710[] = {
114 114 {
115 115 .ident = "HP t5710",
116 116 .matches = {
117 117  
... ... @@ -123,13 +123,13 @@
123 123 };
124 124  
125 125 struct prt_quirk {
126   - struct dmi_system_id *system;
  126 + const struct dmi_system_id *system;
127 127 unsigned int segment;
128 128 unsigned int bus;
129 129 unsigned int device;
130 130 unsigned char pin;
131   - char *source; /* according to BIOS */
132   - char *actual_source;
  131 + const char *source; /* according to BIOS */
  132 + const char *actual_source;
133 133 };
134 134  
135 135 #define PCI_INTX_PIN(c) (c - 'A' + 1)
... ... @@ -139,7 +139,7 @@
139 139 * interrupt at the listed segment/bus/device/pin is connected to the first
140 140 * link device, but it is actually connected to the second.
141 141 */
142   -static struct prt_quirk prt_quirks[] = {
  142 +static const struct prt_quirk prt_quirks[] = {
143 143 { medion_md9580, 0, 0, 9, PCI_INTX_PIN('A'),
144 144 "\\_SB_.PCI0.ISA_.LNKA",
145 145 "\\_SB_.PCI0.ISA_.LNKB"},
... ... @@ -155,7 +155,7 @@
155 155 struct acpi_pci_routing_table *prt)
156 156 {
157 157 int i;
158   - struct prt_quirk *quirk;
  158 + const struct prt_quirk *quirk;
159 159  
160 160 for (i = 0; i < ARRAY_SIZE(prt_quirks); i++) {
161 161 quirk = &prt_quirks[i];