Skip to content

Commit

Permalink
PCI: keystone: Reorder struct keystone_pcie
Browse files Browse the repository at this point in the history
Reorder struct keystone_pcie to put generic fields first.  No functional
change intended.

Signed-off-by: Bjorn Helgaas <[email protected]>
  • Loading branch information
bjorn-helgaas committed Oct 12, 2016
1 parent 5c72535 commit 4841f3a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/pci/host/pci-keystone.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
#define MAX_LEGACY_HOST_IRQS 4

struct keystone_pcie {
struct pcie_port pp; /* pp.dbi_base is DT 0th res */
struct clk *clk;
struct pcie_port pp;
/* PCI Device ID */
u32 device_id;
int num_legacy_host_irqs;
Expand All @@ -34,7 +34,7 @@ struct keystone_pcie {
int error_irq;

/* Application register space */
void __iomem *va_app_base;
void __iomem *va_app_base; /* DT 1st resource */
struct resource app;
};

Expand Down

0 comments on commit 4841f3a

Please sign in to comment.