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

Add to device layer, add class functions, add start of bus type, add to sdevice impl.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • Whitix/branches/keobject/devices/kedev/init.c

    r978 r1055  
    1717 */ 
    1818 
    19 #include <device.h> 
    20 #include <keobject.h> 
     19int BusInit(); 
     20int ClassInit(); 
     21int StorageInit(); 
    2122 
    2223int DeviceInit() 
    2324{ 
     25        ClassInit(); 
     26        BusInit(); 
     27         
    2428        return StorageInit(); 
    2529}