Init() - Device Driver
static void FSDev_####_Init (void);
File | Called from | Code enabled by |
---|---|---|
|
| N/A |
The device driver Init()
function should initialize any structures, tables or variables that are common to all devices or are used to manage devices accessed with the driver. This function should not initialize any devices; that will be done individually for each with the device driver’s Open()
function.
Arguments
None.
Returned Value
None.
Notes/Warnings
- The device driver
Init()
function is called while the caller holds the FS lock.