Changes in uspace/lib/drv/generic/private/driver.h [b688fd8:33b8d024] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/drv/generic/private/driver.h
rb688fd8 r33b8d024 57 57 58 58 /** Device name */ 59 c onst char *name;59 char *name; 60 60 61 61 /** Driver-specific data associated with this device */ … … 84 84 85 85 /** Function name */ 86 c onst char *name;86 char *name; 87 87 88 88 /** List of device ids for driver matching */ … … 93 93 94 94 /** Implementation of operations provided by this function */ 95 ddf_dev_ops_t *ops;95 const ddf_dev_ops_t *ops; 96 96 97 97 /** Connection handler or @c NULL to use the DDF default handler. */
Note:
See TracChangeset
for help on using the changeset viewer.