> On Thu, 25 Sep 2008 16:22:37 -0700 Greg KH wrote:
>
> >
> > From: Greg Kroah-Hartman <gregkh@suse.de>
> >
> > This patch adds the Mimio Xi interactive whiteboard driver to the tree.
> >
> > It was originally written by
mwilder@cs.nmsu.edu, but cleaned up and
> > forward ported by me to the latest kernel version.
> >
> >
> > Cc: Phil Hannent <phil@hannent.co.uk>
> > Cc: <mwilder@cs.nmsu.edu>
> > Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
> >
> > ---
> > drivers/input/misc/Kconfig | 11
> > drivers/input/misc/Makefile | 1
> > drivers/input/misc/mimio.c | 913 ++++++++++++++++++++++++++++++++++++++++++++
> > 3 files changed, 925 insertions(+)
> >
> > --- a/drivers/input/misc/Kconfig
> > +++ b/drivers/input/misc/Kconfig
> > @@ -164,6 +164,17 @@ config INPUT_POWERMATE
> > To compile this driver as a module, choose M here: the
> > module will be called powermate.
> >
> > +config INPUT_MIMIO
> > + tristate "Mimio Xi interactive whiteboard support"
> > + depends on USB_ARCH_HAS_HCD
> > + select USB
>
> Prefer not to select entire subsystems, but to depend on them.
> However, lots of drivers in drivers/input/ select USB... :(