staging: mt7621-pci: Fix line size exceeding 80 columns.
authorSankalp Negi <sankalpnegi2310@gmail.com>
Sun, 27 May 2018 13:12:15 +0000 (18:42 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 31 May 2018 17:00:53 +0000 (19:00 +0200)
This patch fixes the checkpatch.pl warning:

WARNING: line over 80 characters

Signed-off-by: Sankalp Negi <sankalpnegi2310@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/mt7621-pci/pci-mt7621.c

index edd9501..17f2105 100644 (file)
@@ -194,7 +194,8 @@ static int config_access(unsigned char access_type, struct pci_bus *bus,
        address_reg = RALINK_PCI_CONFIG_ADDR;
        data_reg = RALINK_PCI_CONFIG_DATA_VIRTUAL_REG;
 
-       address = (((where&0xF00)>>8)<<24) |(bus->number << 16) | (slot << 11) | (func << 8) | (where & 0xfc) | 0x80000000;
+       address = (((where&0xF00)>>8)<<24) |(bus->number << 16) | (slot << 11) |
+                               (func << 8) | (where & 0xfc) | 0x80000000;
        MV_WRITE(address_reg, address);
 
        switch(access_type) {