From b0b0c8c60a6072d1b0707f9b9b87650570b35ea3 Mon Sep 17 00:00:00 2001 From: Elyes HAOUAS Date: Sun, 8 Jul 2018 12:33:47 +0200 Subject: src/{device,drivers}: Use "foo *bar" instead of "foo* bar" Change-Id: Ic1c9b1edd8d3206a68854107ddcbc5c51cb487c3 Signed-off-by: Elyes HAOUAS Reviewed-on: https://review.coreboot.org/27404 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi --- src/device/oprom/yabel/compat/of.h | 32 ++++++++++++++++---------------- src/device/oprom/yabel/debug.c | 2 +- src/device/oprom/yabel/debug.h | 2 +- src/device/oprom/yabel/vbe.c | 2 +- 4 files changed, 19 insertions(+), 19 deletions(-) (limited to 'src/device/oprom/yabel') diff --git a/src/device/oprom/yabel/compat/of.h b/src/device/oprom/yabel/compat/of.h index 31c9b59071..ce910f7e69 100644 --- a/src/device/oprom/yabel/compat/of.h +++ b/src/device/oprom/yabel/compat/of.h @@ -35,7 +35,7 @@ #ifndef OF_H #define OF_H #define p32 int -#define p32cast (int) (unsigned long) (void*) +#define p32cast (int) (unsigned long) (void *) #define phandle_t p32 #define ihandle_t p32 @@ -50,27 +50,27 @@ typedef struct phandle_t of_finddevice (const char *); -phandle_t of_peer (phandle_t); -phandle_t of_child (phandle_t); -phandle_t of_parent (phandle_t); -int of_getprop (phandle_t, const char *, void *, int); -void * of_call_method_3 (const char *, ihandle_t, int); +phandle_t of_peer(phandle_t); +phandle_t of_child(phandle_t); +phandle_t of_parent(phandle_t); +int of_getprop(phandle_t, const char *, void *, int); +void *of_call_method_3(const char *, ihandle_t, int); -ihandle_t of_open (const char *); +ihandle_t of_open(const char *); void of_close(ihandle_t); -int of_read (ihandle_t , void*, int); -int of_write (ihandle_t, void*, int); -int of_seek (ihandle_t, int, int); +int of_read(ihandle_t, void *, int); +int of_write(ihandle_t, void *, int); +int of_seek(ihandle_t, int, int); -void * of_claim(void *, unsigned int , unsigned int ); -void of_release(void *, unsigned int ); +void *of_claim(void *, unsigned int, unsigned int); +void of_release(void *, unsigned int); int of_yield(void); -void * of_set_callback(void *); +void *of_set_callback(void *); -int vpd_read(unsigned int , unsigned int , char *); -int vpd_write(unsigned int , unsigned int , char *); -int write_mm_log(char *, unsigned int , unsigned short ); +int vpd_read(unsigned int, unsigned int, char *); +int vpd_write(unsigned int, unsigned int, char *); +int write_mm_log(char *, unsigned int, unsigned short); #endif diff --git a/src/device/oprom/yabel/debug.c b/src/device/oprom/yabel/debug.c index daa263e55e..fc226fe6af 100644 --- a/src/device/oprom/yabel/debug.c +++ b/src/device/oprom/yabel/debug.c @@ -37,7 +37,7 @@ u32 debug_flags = 0; void -dump(u8 * addr, u32 len) +dump(u8 *addr, u32 len) { printf("\n%s(%p, %x):\n", __func__, addr, len); while (len) { diff --git a/src/device/oprom/yabel/debug.h b/src/device/oprom/yabel/debug.h index b1a860072d..20db26127b 100644 --- a/src/device/oprom/yabel/debug.h +++ b/src/device/oprom/yabel/debug.h @@ -130,6 +130,6 @@ static inline void set_ci(void) {}; #endif //DEBUG -void dump(u8 * addr, u32 len); +void dump(u8 *addr, u32 len); #endif diff --git a/src/device/oprom/yabel/vbe.c b/src/device/oprom/yabel/vbe.c index 5402ddfefa..c8b99d53b4 100644 --- a/src/device/oprom/yabel/vbe.c +++ b/src/device/oprom/yabel/vbe.c @@ -321,7 +321,7 @@ vbe_set_color(u16 color_number, u32 color_value) } static u8 -vbe_get_color(u16 color_number, u32 * color_value) +vbe_get_color(u16 color_number, u32 *color_value) { vbe_prepare(); // call VBE function 09h (Set/Get Palette Data Function) -- cgit v1.2.3