summaryrefslogtreecommitdiff
path: root/cmd/universe.c
diff options
context:
space:
mode:
authorMarek Vasut <marek.vasut+renesas@mailbox.org>2024-07-13 15:19:16 +0200
committerTom Rini <trini@konsulko.com>2024-07-15 12:12:17 -0600
commite569c73a8e43f0e5294d9059402f0bb2cd491fa6 (patch)
tree9d4f9b47f24e9c946fdc8ed154e01c979c571ca4 /cmd/universe.c
parent789934f1bb0141ee5e7d488d57d22c9182fe76d8 (diff)
cmd: Remove duplicate newlines
Drop all duplicate newlines. No functional change. Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
Diffstat (limited to 'cmd/universe.c')
-rw-r--r--cmd/universe.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/cmd/universe.c b/cmd/universe.c
index d1a712829d0..1445d5301f2 100644
--- a/cmd/universe.c
+++ b/cmd/universe.c
@@ -14,7 +14,6 @@
#define PCI_VENDOR PCI_VENDOR_ID_TUNDRA
#define PCI_DEVICE PCI_DEVICE_ID_TUNDRA_CA91C042
-
typedef struct _UNI_DEV UNI_DEV;
struct _UNI_DEV {
@@ -26,7 +25,6 @@ struct _UNI_DEV {
static UNI_DEV *dev;
-
int universe_init(void)
{
int j, result;
@@ -112,7 +110,6 @@ int universe_init(void)
return result;
}
-
/*
* Create pci slave window (access: pci -> vme)
*/
@@ -209,7 +206,6 @@ int universe_pci_slave_window(unsigned int pciAddr, unsigned int vmeAddr, int si
return -result;
}
-
/*
* Create vme slave window (access: vme -> pci)
*/
@@ -294,7 +290,6 @@ int universe_vme_slave_window(unsigned int vmeAddr, unsigned int pciAddr, int si
return -result;
}
-
/*
* Tundra Universe configuration
*/
@@ -342,7 +337,6 @@ int do_universe(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
return 0;
}
-
U_BOOT_CMD(
universe, 8, 1, do_universe,
"initialize and configure Turndra Universe",