Back to home page

Quest Cross Reference

 
 

    


Warning, cross-references for /kernel/drivers/usb/enumeration.c need to be fixed.

0001 /*                    The Quest Operating System
0002  *  Copyright (C) 2005-2010  Richard West, Boston University
0003  *
0004  *  This program is free software: you can redistribute it and/or modify
0005  *  it under the terms of the GNU General Public License as published by
0006  *  the Free Software Foundation, either version 3 of the License, or
0007  *  (at your option) any later version.
0008  *
0009  *  This program is distributed in the hope that it will be useful,
0010  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
0011  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
0012  *  GNU General Public License for more details.
0013  *
0014  *  You should have received a copy of the GNU General Public License
0015  *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
0016  */
0017 
0018 #include "kernel.h"
0019 #include "module/header.h"
0020 
0021 /* Enumerate the USB bus */
0022 bool
0023 usbenumeration_init (void)
0024 {
0025   extern bool usb_do_enumeration (void);
0026   return usb_do_enumeration ();
0027 }
0028 
0029 static const struct module_ops mod_ops = {
0030   .init = usbenumeration_init
0031 };
0032 
0033 DEF_MODULE (usbenumeration, "USB enumeration", &mod_ops, {"usb___"});
0034 
0035 /*
0036  * Local Variables:
0037  * indent-tabs-mode: nil
0038  * mode: C
0039  * c-file-style: "gnu"
0040  * c-basic-offset: 2
0041  * End:
0042  */
0043 
0044 /* vi: set et sw=2 sts=2: */