Re: [PATCH 14/18] Fix initialization from incompatible pointer type

2014-04-04 Thread Samuel Thibault
Marin Ramesa, le Fri 06 Dec 2013 16:29:56 +0100, a écrit : > Fix initialization from incompatible pointer type in the initialization > of the field dev_name_list in i386/i386at/conf.c. Reworked and applied. Thanks! Samuel

Re: [PATCH 14/18] Fix initialization from incompatible pointer type

2013-12-07 Thread Marin Ramesa
On 06.12.2013 16:29:56, Marin Ramesa wrote: > This patch has one questionable addition, that is the cast from > io_req_t to a pointer to uio struct in the function kdread(). > [...] > - return((*linesw[kd_tty.t_line].l_read)(tp, uio)); > + return((*linesw[kd_tty.t_line].l_read)(tp, (struct

[PATCH 14/18] Fix initialization from incompatible pointer type

2013-12-06 Thread Marin Ramesa
Fix initialization from incompatible pointer type in the initialization of the field dev_name_list in i386/i386at/conf.c. This patch has one questionable addition, that is the cast from io_req_t to a pointer to uio struct in the function kdread(). * device/conf.h: Include sys/types.h. Include mac