|
@@ -21,7 +21,7 @@
|
|
|
* between the ROM and other resources, so enabling it may disable access
|
|
|
* to MMIO registers or other card memory.
|
|
|
*/
|
|
|
-static int pci_enable_rom(struct pci_dev *pdev)
|
|
|
+int pci_enable_rom(struct pci_dev *pdev)
|
|
|
{
|
|
|
struct resource *res = pdev->resource + PCI_ROM_RESOURCE;
|
|
|
struct pci_bus_region region;
|
|
@@ -45,7 +45,7 @@ static int pci_enable_rom(struct pci_dev *pdev)
|
|
|
* Disable ROM decoding on a PCI device by turning off the last bit in the
|
|
|
* ROM BAR.
|
|
|
*/
|
|
|
-static void pci_disable_rom(struct pci_dev *pdev)
|
|
|
+void pci_disable_rom(struct pci_dev *pdev)
|
|
|
{
|
|
|
u32 rom_addr;
|
|
|
pci_read_config_dword(pdev, pdev->rom_base_reg, &rom_addr);
|
|
@@ -260,3 +260,5 @@ void pci_cleanup_rom(struct pci_dev *pdev)
|
|
|
|
|
|
EXPORT_SYMBOL(pci_map_rom);
|
|
|
EXPORT_SYMBOL(pci_unmap_rom);
|
|
|
+EXPORT_SYMBOL_GPL(pci_enable_rom);
|
|
|
+EXPORT_SYMBOL_GPL(pci_disable_rom);
|