Changes in kernel/generic/include/ddi/ddi.h [5a5269d:e037cf37] in mainline
- File:
-
- 1 edited
-
kernel/generic/include/ddi/ddi.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/ddi/ddi.h
r5a5269d 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.
