Fix checkpatch issue - ERROR:POINTER_LOCATION

This commit changes the pointer's location in order to comply with
the defined coding style.

Signed-off-by: Yonattan Louise <yonattan.a.louise.mendoza@linux.intel.com>
Change-Id: Ibcf1ef0e4fc53b0cb5286b36119e76d017f24cd9
diff --git a/include/toolchain/gcc.h b/include/toolchain/gcc.h
index 697f28b..3eefa65 100644
--- a/include/toolchain/gcc.h
+++ b/include/toolchain/gcc.h
@@ -85,7 +85,7 @@
 
 #define UNALIGNED_WRITE(p, v)						\
 	do  {								\
-		unsigned int __attribute__((__may_alias__)) *pp = (unsigned int*)(p); \
+		unsigned int __attribute__((__may_alias__)) *pp = (unsigned int *)(p); \
 		_Unaligned32Write (pp, (v));				\
 	}								\
 	while (0)
@@ -94,7 +94,7 @@
 
 #define UNALIGNED_WRITE(p, v)						\
 	do  {								\
-		unsigned int __attribute__((__may_alias__)) *pp = (unsigned int*)(p); \
+		unsigned int __attribute__((__may_alias__)) *pp = (unsigned int *)(p); \
 		*pp = (v);						\
 	}								\
 	while (0)