diff options
Diffstat (limited to 'arch/mips/pci/pci-alchemy.c')
| -rw-r--r-- | arch/mips/pci/pci-alchemy.c | 10 | 
1 files changed, 5 insertions, 5 deletions
diff --git a/arch/mips/pci/pci-alchemy.c b/arch/mips/pci/pci-alchemy.c index c4ea6cc55f9..d1faece21b6 100644 --- a/arch/mips/pci/pci-alchemy.c +++ b/arch/mips/pci/pci-alchemy.c @@ -19,7 +19,7 @@  #include <asm/mach-au1x00/au1000.h>  #include <asm/tlbmisc.h> -#ifdef CONFIG_DEBUG_PCI +#ifdef CONFIG_PCI_DEBUG  #define DBG(x...) printk(KERN_DEBUG x)  #else  #define DBG(x...) do {} while (0) @@ -29,7 +29,7 @@  #define PCI_ACCESS_WRITE	1  struct alchemy_pci_context { -	struct pci_controller alchemy_pci_ctrl;	/* leave as first member! */ +	struct pci_controller alchemy_pci_ctrl; /* leave as first member! */  	void __iomem *regs;			/* ctrl base */  	/* tools for wired entry for config space access */  	unsigned long last_elo0; @@ -162,7 +162,7 @@ static int config_access(unsigned char access_type, struct pci_bus *bus,  	if (status & (1 << 29)) {  		*data = 0xffffffff;  		error = -1; -		DBG("alchemy-pci: master abort on cfg access %d bus %d dev %d", +		DBG("alchemy-pci: master abort on cfg access %d bus %d dev %d\n",  		    access_type, bus->number, device);  	} else if ((status >> 28) & 0xf) {  		DBG("alchemy-pci: PCI ERR detected: dev %d, status %lx\n", @@ -381,7 +381,7 @@ static int alchemy_pci_probe(struct platform_device *pdev)  	r = platform_get_resource(pdev, IORESOURCE_MEM, 0);  	if (!r) { -		dev_err(&pdev->dev, "no  pcictl ctrl regs resource\n"); +		dev_err(&pdev->dev, "no	 pcictl ctrl regs resource\n");  		ret = -ENODEV;  		goto out1;  	} @@ -482,7 +482,7 @@ out:  static struct platform_driver alchemy_pcictl_driver = {  	.probe		= alchemy_pci_probe, -	.driver	= { +	.driver = {  		.name	= "alchemy-pci",  		.owner	= THIS_MODULE,  	},  |