diff options
author | Peter Vernia <peter.vernia@gmail.com> | 2018-07-07 03:08:36 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2018-07-07 10:25:04 +0200 |
commit | d723b7cca52b89de0945cd7f90fad3c49930b394 (patch) | |
tree | b5d0ba5a21eed28246ad72fdcd1e70a8b67bf15e /drivers/staging/mt7621-pci | |
parent | b6c319606eb62c393a95bc53f9d4cbee31d5b88d (diff) |
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>
Diffstat (limited to 'drivers/staging/mt7621-pci')
-rw-r--r-- | drivers/staging/mt7621-pci/pci-mt7621.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/staging/mt7621-pci/pci-mt7621.c b/drivers/staging/mt7621-pci/pci-mt7621.c index ded58bad08e7..c7932ae00db1 100644 --- a/drivers/staging/mt7621-pci/pci-mt7621.c +++ b/drivers/staging/mt7621-pci/pci-mt7621.c @@ -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; |