diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2018-07-08 12:33:47 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2018-07-09 09:27:34 +0000 |
commit | b0b0c8c60a6072d1b0707f9b9b87650570b35ea3 (patch) | |
tree | fa3f70a9890aa2f45ee15d4c3c99f851c5a74df4 /src/device/oprom | |
parent | 6c9737b1ac5b71f705350a960dee0e68b9afb440 (diff) |
src/{device,drivers}: Use "foo *bar" instead of "foo* bar"
Change-Id: Ic1c9b1edd8d3206a68854107ddcbc5c51cb487c3
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/27404
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'src/device/oprom')
-rw-r--r-- | src/device/oprom/include/x86emu/regs.h | 2 | ||||
-rw-r--r-- | src/device/oprom/yabel/compat/of.h | 32 | ||||
-rw-r--r-- | src/device/oprom/yabel/debug.c | 2 | ||||
-rw-r--r-- | src/device/oprom/yabel/debug.h | 2 | ||||
-rw-r--r-- | src/device/oprom/yabel/vbe.c | 2 |
5 files changed, 20 insertions, 20 deletions
diff --git a/src/device/oprom/include/x86emu/regs.h b/src/device/oprom/include/x86emu/regs.h index 8eec112284..51e9719b3c 100644 --- a/src/device/oprom/include/x86emu/regs.h +++ b/src/device/oprom/include/x86emu/regs.h @@ -306,7 +306,7 @@ typedef struct { unsigned long mem_base; unsigned long mem_size; unsigned long abseg; - void* private; + void *private; X86EMU_regs x86; } X86EMU_sysEnv; 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) |