ACPI: constify tables in pci_irq.c
Signed-off-by: Jan Beulich <jbeulich@novell.com> Signed-off-by: Len Brown <len.brown@intel.com>
This commit is contained in:
parent
f240729832
commit
609d4bc949
1 changed files with 8 additions and 8 deletions
|
@ -86,7 +86,7 @@ static struct acpi_prt_entry *acpi_pci_irq_find_prt_entry(struct pci_dev *dev,
|
||||||
}
|
}
|
||||||
|
|
||||||
/* http://bugzilla.kernel.org/show_bug.cgi?id=4773 */
|
/* http://bugzilla.kernel.org/show_bug.cgi?id=4773 */
|
||||||
static struct dmi_system_id medion_md9580[] = {
|
static const struct dmi_system_id medion_md9580[] = {
|
||||||
{
|
{
|
||||||
.ident = "Medion MD9580-F laptop",
|
.ident = "Medion MD9580-F laptop",
|
||||||
.matches = {
|
.matches = {
|
||||||
|
@ -98,7 +98,7 @@ static struct dmi_system_id medion_md9580[] = {
|
||||||
};
|
};
|
||||||
|
|
||||||
/* http://bugzilla.kernel.org/show_bug.cgi?id=5044 */
|
/* http://bugzilla.kernel.org/show_bug.cgi?id=5044 */
|
||||||
static struct dmi_system_id dell_optiplex[] = {
|
static const struct dmi_system_id dell_optiplex[] = {
|
||||||
{
|
{
|
||||||
.ident = "Dell Optiplex GX1",
|
.ident = "Dell Optiplex GX1",
|
||||||
.matches = {
|
.matches = {
|
||||||
|
@ -110,7 +110,7 @@ static struct dmi_system_id dell_optiplex[] = {
|
||||||
};
|
};
|
||||||
|
|
||||||
/* http://bugzilla.kernel.org/show_bug.cgi?id=10138 */
|
/* http://bugzilla.kernel.org/show_bug.cgi?id=10138 */
|
||||||
static struct dmi_system_id hp_t5710[] = {
|
static const struct dmi_system_id hp_t5710[] = {
|
||||||
{
|
{
|
||||||
.ident = "HP t5710",
|
.ident = "HP t5710",
|
||||||
.matches = {
|
.matches = {
|
||||||
|
@ -123,13 +123,13 @@ static struct dmi_system_id hp_t5710[] = {
|
||||||
};
|
};
|
||||||
|
|
||||||
struct prt_quirk {
|
struct prt_quirk {
|
||||||
struct dmi_system_id *system;
|
const struct dmi_system_id *system;
|
||||||
unsigned int segment;
|
unsigned int segment;
|
||||||
unsigned int bus;
|
unsigned int bus;
|
||||||
unsigned int device;
|
unsigned int device;
|
||||||
unsigned char pin;
|
unsigned char pin;
|
||||||
char *source; /* according to BIOS */
|
const char *source; /* according to BIOS */
|
||||||
char *actual_source;
|
const char *actual_source;
|
||||||
};
|
};
|
||||||
|
|
||||||
#define PCI_INTX_PIN(c) (c - 'A' + 1)
|
#define PCI_INTX_PIN(c) (c - 'A' + 1)
|
||||||
|
@ -139,7 +139,7 @@ struct prt_quirk {
|
||||||
* interrupt at the listed segment/bus/device/pin is connected to the first
|
* interrupt at the listed segment/bus/device/pin is connected to the first
|
||||||
* link device, but it is actually connected to the second.
|
* link device, but it is actually connected to the second.
|
||||||
*/
|
*/
|
||||||
static struct prt_quirk prt_quirks[] = {
|
static const struct prt_quirk prt_quirks[] = {
|
||||||
{ medion_md9580, 0, 0, 9, PCI_INTX_PIN('A'),
|
{ medion_md9580, 0, 0, 9, PCI_INTX_PIN('A'),
|
||||||
"\\_SB_.PCI0.ISA_.LNKA",
|
"\\_SB_.PCI0.ISA_.LNKA",
|
||||||
"\\_SB_.PCI0.ISA_.LNKB"},
|
"\\_SB_.PCI0.ISA_.LNKB"},
|
||||||
|
@ -155,7 +155,7 @@ static void do_prt_fixups(struct acpi_prt_entry *entry,
|
||||||
struct acpi_pci_routing_table *prt)
|
struct acpi_pci_routing_table *prt)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
struct prt_quirk *quirk;
|
const struct prt_quirk *quirk;
|
||||||
|
|
||||||
for (i = 0; i < ARRAY_SIZE(prt_quirks); i++) {
|
for (i = 0; i < ARRAY_SIZE(prt_quirks); i++) {
|
||||||
quirk = &prt_quirks[i];
|
quirk = &prt_quirks[i];
|
||||||
|
|
Loading…
Add table
Reference in a new issue