Changeset 1054

Show
Ignore:
Timestamp:
10/03/08 12:10:45 (3 months ago)
Author:
mwhitworth
Message:

Comment out for now while API stabilizes.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • Whitix/branches/keobject/devices/input/ps2mouse.c

    r955 r1054  
    223223} 
    224224 
    225 static struct FileOps mouseOps={ 
     225struct FileOps mouseOps={ 
    226226        .open = Ps2Open, 
    227227        .close = Ps2Close, 
     
    239239        KePrint("PS2: Found PS/2 mouse\n"); 
    240240 
    241         return DevAddDevice("Input/Ps2Mouse",INPUT_MAJOR,0,DEVICE_CHAR,&mouseOps); 
     241//      return DevAddDevice("Input/Ps2Mouse",INPUT_MAJOR,0,DEVICE_CHAR,&mouseOps); 
     242        return 0; 
    242243} 
    243244