PCI: endpoint: pci-epf-vntb: Fix struct epf_ntb_ctrl indentation
authorFrank Li <frank.li@nxp.com>
Wed, 2 Nov 2022 14:10:09 +0000 (10:10 -0400)
committerLorenzo Pieralisi <lpieralisi@kernel.org>
Wed, 23 Nov 2022 15:23:41 +0000 (16:23 +0100)
Align the indentation of struct epf_ntb_ctrl with other structs in
the driver.

Link: https://lore.kernel.org/r/20221102141014.1025893-3-Frank.Li@nxp.com
Signed-off-by: Frank Li <frank.li@nxp.com>
Signed-off-by: Lorenzo Pieralisi <lpieralisi@kernel.org>
drivers/pci/endpoint/functions/pci-epf-vntb.c

index c0115bc..1863006 100644 (file)
@@ -99,20 +99,20 @@ enum epf_ntb_bar {
  *       NTB Driver               NTB Driver
  */
 struct epf_ntb_ctrl {
-       u32     command;
-       u32     argument;
-       u16     command_status;
-       u16     link_status;
-       u32     topology;
-       u64     addr;
-       u64     size;
-       u32     num_mws;
-       u32     reserved;
-       u32     spad_offset;
-       u32     spad_count;
-       u32     db_entry_size;
-       u32     db_data[MAX_DB_COUNT];
-       u32     db_offset[MAX_DB_COUNT];
+       u32 command;
+       u32 argument;
+       u16 command_status;
+       u16 link_status;
+       u32 topology;
+       u64 addr;
+       u64 size;
+       u32 num_mws;
+       u32 reserved;
+       u32 spad_offset;
+       u32 spad_count;
+       u32 db_entry_size;
+       u32 db_data[MAX_DB_COUNT];
+       u32 db_offset[MAX_DB_COUNT];
 } __packed;
 
 struct epf_ntb {