macintosh: macio_asic: remove useless cast for driver.name
pci_driver name is const char pointer, so the cast it not necessary. Signed-off-by: Corentin Labbe <clabbe@baylibre.com> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au> Link: https://lore.kernel.org/r/20220125135421.4081740-1-clabbe@baylibre.com
This commit is contained in:
parent
2e7f1e2b30
commit
ccafe7c20b
|
@ -756,7 +756,7 @@ MODULE_DEVICE_TABLE (pci, pci_ids);
|
||||||
|
|
||||||
/* pci driver glue; this is a "new style" PCI driver module */
|
/* pci driver glue; this is a "new style" PCI driver module */
|
||||||
static struct pci_driver macio_pci_driver = {
|
static struct pci_driver macio_pci_driver = {
|
||||||
.name = (char *) "macio",
|
.name = "macio",
|
||||||
.id_table = pci_ids,
|
.id_table = pci_ids,
|
||||||
|
|
||||||
.probe = macio_pci_probe,
|
.probe = macio_pci_probe,
|
||||||
|
|
Loading…
Reference in New Issue