get rid of old cruft: remove args argument from the modules' init() routines

This commit is contained in:
marschap
2005-07-02 13:38:51 +00:00
parent 32545c99a2
commit 0ec83bdc66
63 changed files with 77 additions and 84 deletions
+2 -2
View File
@@ -133,7 +133,7 @@ lcdm001_cursorblink (Driver *drvthis, int on)
* point all the function pointers.
*/
MODULE_EXPORT int
lcdm001_init (Driver *drvthis, char *args)
lcdm001_init (Driver *drvthis)
{
char device[200];
int speed=B38400;
@@ -141,7 +141,7 @@ lcdm001_init (Driver *drvthis, char *args)
char out[5]="";
debug( RPT_INFO, "LCDM001: init(%p,%s)", drvthis, args );
debug( RPT_INFO, "LCDM001: init(%p)", drvthis );
framebuf = malloc (width * height);