Merge branch 'pci/misc' into next
* pci/misc: PCI: Fix PCIe capability sizes PCI: Convert to using %pOF instead of full_name() PCI: Constify endpoint pci_epf_type device_type PCI: Constify bin_attribute structures PCI: Constify hotplug pci_device_id structures PCI: Constify hotplug attribute_group structures PCI: Constify label attribute_group structures PCI: Constify sysfs attribute_group structures
Este cometimento está contido em:
@@ -280,7 +280,7 @@ static void zt5550_hc_remove_one(struct pci_dev *pdev)
|
||||
}
|
||||
|
||||
|
||||
static struct pci_device_id zt5550_hc_pci_tbl[] = {
|
||||
static const struct pci_device_id zt5550_hc_pci_tbl[] = {
|
||||
{ PCI_VENDOR_ID_ZIATECH, PCI_DEVICE_ID_ZIATECH_5550_HC, PCI_ANY_ID, PCI_ANY_ID, },
|
||||
{ 0, }
|
||||
};
|
||||
|
@@ -1417,7 +1417,7 @@ static void __exit unload_cpqphpd(void)
|
||||
iounmap(smbios_start);
|
||||
}
|
||||
|
||||
static struct pci_device_id hpcd_pci_tbl[] = {
|
||||
static const struct pci_device_id hpcd_pci_tbl[] = {
|
||||
{
|
||||
/* handle any PCI Hotplug controller */
|
||||
.class = ((PCI_CLASS_SYSTEM_PCI_HOTPLUG << 8) | 0x00),
|
||||
|
@@ -852,7 +852,7 @@ static int set_bus(struct slot *slot_cur)
|
||||
u8 speed;
|
||||
u8 cmd = 0x0;
|
||||
int retval;
|
||||
static struct pci_device_id ciobx[] = {
|
||||
static const struct pci_device_id ciobx[] = {
|
||||
{ PCI_DEVICE(PCI_VENDOR_ID_SERVERWORKS, 0x0101) },
|
||||
{ },
|
||||
};
|
||||
|
@@ -1153,7 +1153,7 @@ void ibmphp_free_ebda_pci_rsrc_queue(void)
|
||||
}
|
||||
}
|
||||
|
||||
static struct pci_device_id id_table[] = {
|
||||
static const struct pci_device_id id_table[] = {
|
||||
{
|
||||
.vendor = PCI_VENDOR_ID_IBM,
|
||||
.device = HPC_DEVICE_ID,
|
||||
|
@@ -163,8 +163,8 @@ static void pnv_php_detach_device_nodes(struct device_node *parent)
|
||||
of_node_put(dn);
|
||||
refcount = kref_read(&dn->kobj.kref);
|
||||
if (refcount != 1)
|
||||
pr_warn("Invalid refcount %d on <%s>\n",
|
||||
refcount, of_node_full_name(dn));
|
||||
pr_warn("Invalid refcount %d on <%pOF>\n",
|
||||
refcount, dn);
|
||||
|
||||
of_detach_node(dn);
|
||||
}
|
||||
|
@@ -150,8 +150,8 @@ static void dlpar_pci_add_bus(struct device_node *dn)
|
||||
/* Add EADS device to PHB bus, adding new entry to bus->devices */
|
||||
dev = of_create_pci_dev(dn, phb->bus, pdn->devfn);
|
||||
if (!dev) {
|
||||
printk(KERN_ERR "%s: failed to create pci dev for %s\n",
|
||||
__func__, dn->full_name);
|
||||
printk(KERN_ERR "%s: failed to create pci dev for %pOF\n",
|
||||
__func__, dn);
|
||||
return;
|
||||
}
|
||||
|
||||
|
@@ -102,7 +102,7 @@ static struct attribute *default_attrs[] = {
|
||||
NULL,
|
||||
};
|
||||
|
||||
static struct attribute_group dlpar_attr_group = {
|
||||
static const struct attribute_group dlpar_attr_group = {
|
||||
.attrs = default_attrs,
|
||||
};
|
||||
|
||||
|
@@ -318,7 +318,7 @@ int rpaphp_add_slot(struct device_node *dn)
|
||||
if (!is_php_dn(dn, &indexes, &names, &types, &power_domains))
|
||||
return 0;
|
||||
|
||||
dbg("Entry %s: dn->full_name=%s\n", __func__, dn->full_name);
|
||||
dbg("Entry %s: dn=%pOF\n", __func__, dn);
|
||||
|
||||
/* register PCI devices */
|
||||
name = (char *) &names[1];
|
||||
|
@@ -95,7 +95,7 @@ int rpaphp_enable_slot(struct slot *slot)
|
||||
|
||||
bus = pci_find_bus_by_node(slot->dn);
|
||||
if (!bus) {
|
||||
err("%s: no pci_bus for dn %s\n", __func__, slot->dn->full_name);
|
||||
err("%s: no pci_bus for dn %pOF\n", __func__, slot->dn);
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
@@ -125,7 +125,7 @@ int rpaphp_enable_slot(struct slot *slot)
|
||||
|
||||
if (rpaphp_debug) {
|
||||
struct pci_dev *dev;
|
||||
dbg("%s: pci_devs of slot[%s]\n", __func__, slot->dn->full_name);
|
||||
dbg("%s: pci_devs of slot[%pOF]\n", __func__, slot->dn);
|
||||
list_for_each_entry(dev, &bus->devices, bus_list)
|
||||
dbg("\t%s\n", pci_name(dev));
|
||||
}
|
||||
|
@@ -122,8 +122,8 @@ int rpaphp_register_slot(struct slot *slot)
|
||||
int retval;
|
||||
int slotno = -1;
|
||||
|
||||
dbg("%s registering slot:path[%s] index[%x], name[%s] pdomain[%x] type[%d]\n",
|
||||
__func__, slot->dn->full_name, slot->index, slot->name,
|
||||
dbg("%s registering slot:path[%pOF] index[%x], name[%s] pdomain[%x] type[%d]\n",
|
||||
__func__, slot->dn, slot->index, slot->name,
|
||||
slot->power_domain, slot->type);
|
||||
|
||||
/* should not try to register the same slot twice */
|
||||
|
@@ -351,7 +351,7 @@ static void shpc_remove(struct pci_dev *dev)
|
||||
kfree(ctrl);
|
||||
}
|
||||
|
||||
static struct pci_device_id shpcd_pci_tbl[] = {
|
||||
static const struct pci_device_id shpcd_pci_tbl[] = {
|
||||
{PCI_DEVICE_CLASS(((PCI_CLASS_BRIDGE_PCI << 8) | 0x00), ~0)},
|
||||
{ /* end: all zeroes */ }
|
||||
};
|
||||
|
Criar uma nova questão referindo esta
Bloquear um utilizador