Changeset 8e7c9fe in mainline for uspace/lib/drv/generic/driver.c
- Timestamp:
- 2014-09-12T03:45:25Z (10 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c53b58e
- Parents:
- 3eb0c85 (diff), 105d8d6 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/drv/generic/driver.c
r3eb0c85 r8e7c9fe 36 36 /** @file 37 37 */ 38 39 #define _DDF_DATA_IMPLANT40 38 41 39 #include <assert.h> … … 596 594 } 597 595 598 /** Implant foreign driver-specific device data.599 *600 * XXX This is used to transition USB to new interface. Do not use601 * in new code. Use of this function must be removed.602 */603 void ddf_fun_data_implant(ddf_fun_t *fun, void *data)604 {605 assert(fun->driver_data == NULL);606 fun->driver_data = data;607 }608 609 596 /** Return driver-specific device data. */ 610 597 void *ddf_dev_data_get(ddf_dev_t *dev) … … 964 951 */ 965 952 driver = drv; 966 967 /* Initialize interrupt module */968 interrupt_init();969 953 970 954 /*
Note:
See TracChangeset
for help on using the changeset viewer.