Console API related patch.

2003-02-16 Thread Poul-Henning Kamp
I am trying to do some weird things with some custom console code and got stuck on the fact that our console code belives all consoles have a dev_t. This patch changes the API so that rather than pass a dev_t to the console functions, the struct consdev * is passed: -typedefvoid

Re: Console API related patch.

2003-02-16 Thread Marcel Moolenaar
On Sun, Feb 16, 2003 at 09:45:28PM +0100, Poul-Henning Kamp wrote: I am trying to do some weird things with some custom console code and got stuck on the fact that our console code belives all consoles have a dev_t. This patch changes the API so that rather than pass a dev_t to the

Re: Console API related patch.

2003-02-16 Thread phk
In message [EMAIL PROTECTED], Marcel Moolenaar writes: This patch changes the API so that rather than pass a dev_t to the console functions, the struct consdev * is passed: -typedefvoidcn_putc_t(dev_t, int); +typedefvoidcn_putc_t(struct consdev *, int);