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>
This commit is contained in:
committed by
Patrick Georgi
parent
6c9737b1ac
commit
b0b0c8c60a
@@ -195,7 +195,7 @@ static resource_t round(resource_t val, unsigned long pow)
|
||||
return val;
|
||||
}
|
||||
|
||||
static const char * resource2str(struct resource *res)
|
||||
static const char *resource2str(struct resource *res)
|
||||
{
|
||||
if (res->flags & IORESOURCE_IO)
|
||||
return "io";
|
||||
|
@@ -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;
|
||||
|
||||
|
@@ -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
|
||||
|
@@ -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) {
|
||||
|
@@ -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
|
||||
|
@@ -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)
|
||||
|
Reference in New Issue
Block a user