Changeset e037cf37 in mainline for kernel/generic/include/ddi/ddi.h
- Timestamp:
- 2020-12-29T22:17:21Z (4 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 11e394f, d70dc1c4
- Parents:
- 1483981
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/ddi/ddi.h
r1483981 re037cf37 42 42 43 43 /** Structure representing contiguous physical memory area. */ 44 typedef struct {44 typedef struct parea { 45 45 /** Link to @c pareas ordered dictionary */ 46 46 odlink_t lpareas; … … 54 54 /** Indicate whether the area is actually mapped. */ 55 55 bool mapped; 56 /** Called when @c mapped field has changed */ 57 void (*mapped_changed)(void *); 58 /** Callback argument */ 59 void *arg; 56 60 } parea_t; 57 61 … … 59 63 extern void ddi_parea_init(parea_t *); 60 64 extern void ddi_parea_register(parea_t *); 65 extern void ddi_parea_unmap_notify(parea_t *); 61 66 62 67 extern void *pio_map(void *, size_t);
Note:
See TracChangeset
for help on using the changeset viewer.