diff mbox series

[21/25] hw/gx: Add space between switch and open paren

Message ID 20170905055202.8216-22-joel@jms.id.au
State Accepted
Headers show
Series Checkpatch fixes | expand

Commit Message

Joel Stanley Sept. 5, 2017, 5:51 a.m. UTC
Signed-off-by: Joel Stanley <joel@jms.id.au>
---
 hw/gx.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
diff mbox series

Patch

diff --git a/hw/gx.c b/hw/gx.c
index 16b872a94428..12cea5b5209c 100644
--- a/hw/gx.c
+++ b/hw/gx.c
@@ -84,8 +84,8 @@  int gx_configure_psi_buid(uint32_t chip, uint32_t buid)
 
 	printf("GX: PSI BUID for PVR %x (type %x) chip %d BUID 0x%x\n",
 	       pvr, PVR_TYPE(pvr), chip, buid);
-	       
-	switch(PVR_TYPE(pvr)) {
+
+	switch (PVR_TYPE(pvr)) {
 	case PVR_TYPE_P7:
 		return gx_p7_configure_psi_buid(chip, buid);
 	case PVR_TYPE_P7P:
@@ -148,7 +148,7 @@  int gx_configure_tce_bar(uint32_t chip, uint32_t gx, uint64_t addr,
 	       pvr, PVR_TYPE(pvr), chip, gx);
 
 	/* We only support P7... is there a P7+ with P5IOC2 ? */
-	switch(PVR_TYPE(pvr)) {
+	switch (PVR_TYPE(pvr)) {
 	case PVR_TYPE_P7:
 		return gx_p7_configure_tce_bar(chip, gx, addr, size);
 	}