Update of /cvsroot/gc-linux/linux/drivers/block
In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv23815/drivers/block
Added Files:
rvl-di.c
Log Message:
Add new files for gc-linux-2.6.32.
--- NEW FILE: rvl-di.c ---
/*
* drivers/block/rvl-di.c
*
* Nintendo Wii Disk Interface (DI) driver
* Copyright (C) 2009 The GameCube Linux Team
* Copyright (C) 2009 Albert Herranz
*
* Based on Nintendo GameCube Disk Interface (DI) driver
* Copyright (C) 2005-2009 The GameCube Linux Team
* Copyright (C) 2005,2006,2007,2009 Albert Herranz
*
* Portions based on previous work by Scream|CT.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
*/
[...1836 lines suppressed...]
*/
static int __init di_init_module(void)
{
pr_info("%s - version %s\n", DRV_DESCRIPTION, di_driver_version);
return of_register_platform_driver(&di_of_driver);
}
static void __exit di_exit_module(void)
{
of_unregister_platform_driver(&di_of_driver);
}
module_init(di_init_module);
module_exit(di_exit_module);
MODULE_AUTHOR(DRV_AUTHOR);
MODULE_DESCRIPTION(DRV_DESCRIPTION);
MODULE_LICENSE("GPL");
|