mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-09 17:17:04 -04:00
staging: mt7621-pci: Fix spacing around equals sign
Add spaces in front of the equals sign in assignment operations Signed-off-by: Peter Vernia <peter.vernia@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
b6c319606e
commit
d723b7cca5
@@ -292,7 +292,7 @@ pci_config_write(struct pci_bus *bus, unsigned int devfn, int where, int size, u
|
||||
}
|
||||
}
|
||||
|
||||
struct pci_ops mt7621_pci_ops= {
|
||||
struct pci_ops mt7621_pci_ops = {
|
||||
.read = pci_config_read,
|
||||
.write = pci_config_write,
|
||||
};
|
||||
@@ -480,8 +480,8 @@ static int mt7621_pci_probe(struct platform_device *pdev)
|
||||
unsigned long val = 0;
|
||||
|
||||
iomem_resource.start = 0;
|
||||
iomem_resource.end= ~0;
|
||||
ioport_resource.start= 0;
|
||||
iomem_resource.end = ~0;
|
||||
ioport_resource.start = 0;
|
||||
ioport_resource.end = ~0;
|
||||
|
||||
val = RALINK_PCIE0_RST;
|
||||
|
||||
Reference in New Issue
Block a user