]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
Staging: mt7621-pci: Fix alignment warnings
authorSiddhant Gupta <siddhantgupta416@gmail.com>
Fri, 6 Nov 2020 09:30:21 +0000 (15:00 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 6 Nov 2020 10:04:49 +0000 (11:04 +0100)
Fix the alignment issue pointed out by checkpatch

Signed-off-by: Siddhant Gupta <siddhantgupta416@gmail.com>
Link: https://lore.kernel.org/r/20201106093021.GA25237@Sleakybeast
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/mt7621-pci/pci-mt7621.c

index f961b353c22e4071bf7f4e5d749a344335de7747..0e95fb33b4e97d83c099b76339e73601ff8c9156 100644 (file)
@@ -278,8 +278,8 @@ static void setup_cm_memory_region(struct mt7621_pcie *pcie)
                write_gcr_reg1_base(mem_resource->start);
                write_gcr_reg1_mask(mask | CM_GCR_REGn_MASK_CMTGT_IOCU0);
                dev_info(dev, "PCI coherence region base: 0x%08llx, mask/settings: 0x%08llx\n",
-                       (unsigned long long)read_gcr_reg1_base(),
-                       (unsigned long long)read_gcr_reg1_mask());
+                        (unsigned long long)read_gcr_reg1_base(),
+                        (unsigned long long)read_gcr_reg1_mask());
        }
 }