Changeset 41b56084 in mainline
- Timestamp:
- 2011-01-09T17:55:20Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 8871dba
- Parents:
- 50c57df
- Location:
- uspace
- Files:
-
- 7 edited
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/isa/isa.c
r50c57df r41b56084 51 51 52 52 #include <driver.h> 53 #include < hw_res.h>53 #include <ops/hw_res.h> 54 54 55 55 #include <devman.h> -
uspace/drv/ns8250/ns8250.c
r50c57df r41b56084 53 53 54 54 #include <driver.h> 55 #include < char_dev.h>55 #include <ops/char_dev.h> 56 56 57 57 #include <devman.h> -
uspace/drv/pciintel/pci.c
r50c57df r41b56084 49 49 #include <ipc/devman.h> 50 50 #include <ipc/dev_iface.h> 51 #include < hw_res.h>51 #include <ops/hw_res.h> 52 52 #include <device/hw_res.h> 53 53 #include <ddi.h> -
uspace/drv/rootpc/rootpc.c
r50c57df r41b56084 50 50 #include <ipc/devman.h> 51 51 #include <ipc/dev_iface.h> 52 #include < hw_res.h>52 #include <ops/hw_res.h> 53 53 #include <device/hw_res.h> 54 54 -
uspace/drv/test1/char.c
r50c57df r41b56084 33 33 #include <errno.h> 34 34 #include <mem.h> 35 #include < char_dev.h>35 #include <ops/char_dev.h> 36 36 37 37 #include "test1.h" -
uspace/lib/drv/generic/remote_char.c
r50c57df r41b56084 37 37 #include <errno.h> 38 38 39 #include " char_dev.h"39 #include "ops/char_dev.h" 40 40 #include "driver.h" 41 41 -
uspace/lib/drv/generic/remote_res.c
r50c57df r41b56084 37 37 #include <errno.h> 38 38 39 #include "ops/hw_res.h" 39 40 #include "driver.h" 40 #include "hw_res.h"41 41 42 42 static void remote_res_get_resource_list(device_t *, void *, ipc_callid_t, -
uspace/lib/drv/include/ops/char_dev.h
r50c57df r41b56084 33 33 */ 34 34 35 #ifndef LIBDRV_ CHAR_DEV_H_36 #define LIBDRV_ CHAR_DEV_H_35 #ifndef LIBDRV_OPS_CHAR_DEV_H_ 36 #define LIBDRV_OPS_CHAR_DEV_H_ 37 37 38 #include " driver.h"38 #include "../driver.h" 39 39 40 40 typedef struct { -
uspace/lib/drv/include/ops/hw_res.h
r50c57df r41b56084 33 33 */ 34 34 35 #ifndef LIBDRV_ HW_RES_H_36 #define LIBDRV_ HW_RES_H_35 #ifndef LIBDRV_OPS_HW_RES_H_ 36 #define LIBDRV_OPS_HW_RES_H_ 37 37 38 38 #include <device/hw_res.h> 39 39 #include <sys/types.h> 40 41 #include "../driver.h" 40 42 41 43 typedef struct {
Note:
See TracChangeset
for help on using the changeset viewer.