Changes in uspace/srv/hid/fb/port/niagara.c [fbcdeb8:7c014d1] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/fb/port/niagara.c
rfbcdeb8 r7c014d1 103 103 return rc; 104 104 105 rc = physmem_map((void *) paddr, 1, 106 AS_AREA_READ | AS_AREA_WRITE, (void *) &niagara.fifo); 105 niagara.fifo = 106 (output_fifo_t *) as_get_mappable_page(sizeof(output_fifo_t)); 107 if (niagara.fifo == NULL) 108 return ENOMEM; 109 110 rc = physmem_map((void *) paddr, (void *) niagara.fifo, 1, 111 AS_AREA_READ | AS_AREA_WRITE); 107 112 if (rc != EOK) 108 113 return rc;
Note:
See TracChangeset
for help on using the changeset viewer.