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
@@ -180,7 +180,7 @@ static void CFontz633_hardware_clear (Driver *drvthis);
* Opens com port and sets baud correctly...
*/
MODULE_EXPORT int
CFontz633_init (Driver *drvthis, char *args)
CFontz633_init (Driver *drvthis)
{
struct termios portset;
int tmp, w, h;
@@ -204,7 +204,7 @@ CFontz633_init (Driver *drvthis, char *args)
p->ccmode = standard;
p->LEDstate = 0xFFFF;
debug(RPT_INFO, "CFontz633: init(%p,%s)", drvthis, args );
debug(RPT_INFO, "CFontz633: init(%p)", drvthis );
EmptyKeyRing(&keyring);
EmptyReceiveBuffer(&receivebuffer);