soc/intel/common: Fix spacing issues

Fix the following errors detected by checkpatch.pl:

ERROR: spaces required around that '=' (ctx:VxV)
ERROR: spaces required around that ':' (ctx:VxW)
ERROR: space required after that ',' (ctx:VxV)
ERROR: space required before the open parenthesis '('
ERROR: switch and case should be at the same indent
ERROR: "foo ** bar" should be "foo **bar"

TEST=Build and run on Galileo Gen2

Change-Id: I52ba2a3c1e0fffad7145eecd878aba8dc450ac0b
Signed-off-by: Lee Leahy <Leroy.P.Leahy@intel.com>
Reviewed-on: https://review.coreboot.org/18755
Tested-by: build bot (Jenkins)
Reviewed-by: Philippe Mathieu-Daudé <philippe.mathieu.daude@gmail.com>
Reviewed-by: Furquan Shaikh <furquan@google.com>
diff --git a/src/soc/intel/common/block/cse/cse.c b/src/soc/intel/common/block/cse/cse.c
index 77cedb1..3808bd6 100644
--- a/src/soc/intel/common/block/cse/cse.c
+++ b/src/soc/intel/common/block/cse/cse.c
@@ -323,7 +323,7 @@
 		hdr |= client_addr << MEI_HDR_CSE_ADDR_START;
 		hdr |= host_addr << MEI_HDR_HOST_ADDR_START;
 		hdr |= (MIN(max_length, remaining) == remaining) ?
-						MEI_HDR_IS_COMPLETE: 0;
+						MEI_HDR_IS_COMPLETE : 0;
 		sent = send_one_message(hdr, p);
 		p += sent;
 		remaining -= sent;