Re: Remove device poll functions

2022-07-01 Thread Visa Hankala
On Sat, Jul 02, 2022 at 03:23:30PM +1000, Jonathan Gray wrote: > a few more could be removed? > > arch/sh/dev/scif.c:scifpoll(dev_t dev, int events, struct proc *p) > > kern/tty_tty.c:cttypoll(dev_t dev, int events, struct proc *p) > sys/tty.h:int cttypoll(dev_t, int, struct proc *);

Re: Remove device poll functions

2022-07-01 Thread Jonathan Gray
On Fri, Jul 01, 2022 at 02:06:46PM +, Visa Hankala wrote: > Remove unused device poll functions. > > This also removes unneeded includes of and > from the kernel. Some includes of are removed as well, > but another cleanup will come related to that header. > > After this, most of the

Remove device poll functions

2022-07-01 Thread Visa Hankala
Remove unused device poll functions. This also removes unneeded includes of and from the kernel. Some includes of are removed as well, but another cleanup will come related to that header. After this, most of the remnants of the old poll machinery can be removed. OK? Index: