Changes between Version 10 and Version 11 of DeviceDrivers


Ignore:
Timestamp:
2011-11-11T14:47:46Z (13 years ago)
Author:
Jiri Svoboda
Comment:

Exposing driver services

Legend:

Unmodified
Added
Removed
Modified
  • DeviceDrivers

    v10 v11  
    9090== Exposing Driver Services to Clients ==
    9191
     92All driver services are provided to clients (applications) via the location service. For each bound function node the device framework creates a service whose name is based on the physical path of that function.
     93
     94Often the driver will want to add the function service to one or more service categories. This can be done using the DDF function:
     95{{{
     96int ddf_fun_add_to_category(ddf_fun_t *fun, const char *cat_name)
     97}}}
     98
    9299== Traditional I/O Device Drivers ==
    93100