2019-06-04 08:11:33 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
2012-05-11 16:47:30 +00:00
|
|
|
/*
|
|
|
|
*
|
2016-05-05 07:57:56 +00:00
|
|
|
* Copyright (C) 2012 John Crispin <john@phrozen.org>
|
2012-05-11 16:47:30 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/of_pci.h>
|
2023-10-10 14:34:05 +00:00
|
|
|
#include <linux/pci.h>
|
2012-05-11 16:47:30 +00:00
|
|
|
|
|
|
|
int pcibios_plat_dev_init(struct pci_dev *dev)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-09-12 18:36:28 +00:00
|
|
|
int pcibios_map_irq(const struct pci_dev *dev, u8 slot, u8 pin)
|
2012-05-11 16:47:30 +00:00
|
|
|
{
|
2013-09-19 21:44:55 +00:00
|
|
|
return of_irq_parse_and_map_pci(dev, slot, pin);
|
2012-05-11 16:47:30 +00:00
|
|
|
}
|