search for: vga_out16v

Displaying 1 result from an estimated 1 matches for "vga_out16v".

Did you mean: vga_out16val
2006 Aug 18
0
[PATCH/RFC] gcc warnings of void * arithmetic
...ned-off-by: Jimi Xenidis <jimix@watson.ibm.com> --- diff -r 66cd49a0e239 xen/drivers/video/vga.c --- a/xen/drivers/video/vga.c Fri Aug 18 13:30:01 2006 -0400 +++ b/xen/drivers/video/vga.c Fri Aug 18 13:43:30 2006 -0400 @@ -185,17 +185,17 @@ static inline void vga_io_w_fast(uint16_ outw(VGA_OUT16VAL(val, reg), port); } -static inline uint8_t vga_mm_r(void __iomem *regbase, uint16_t port) +static inline uint8_t vga_mm_r(char __iomem *regbase, uint16_t port) { return readb(regbase + port); } -static inline void vga_mm_w(void __iomem *regbase, uint16_t port, uint8_t val) +static inl...