Changes in uspace/drv/platform/sun4u/sun4u.c [48adf0f:b7fd2a0] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/platform/sun4u/sun4u.c
r48adf0f rb7fd2a0 77 77 } sun4u_fun_t; 78 78 79 static int sun4u_dev_add(ddf_dev_t *dev);79 static errno_t sun4u_dev_add(ddf_dev_t *dev); 80 80 static void sun4u_init(void); 81 81 … … 159 159 } 160 160 161 static int sun4u_enable_interrupt(ddf_fun_t *fun, int irq)161 static errno_t sun4u_enable_interrupt(ddf_fun_t *fun, int irq) 162 162 { 163 163 /* TODO */ … … 193 193 194 194 ddf_fun_t *fnode = NULL; 195 int rc;195 errno_t rc; 196 196 197 197 /* Create new device. */ … … 240 240 * @param dev The device which is root of the whole device tree (both 241 241 * of HW and pseudo devices). 242 * @return Zero on success, negativeerror number otherwise.243 */ 244 static int sun4u_dev_add(ddf_dev_t *dev)242 * @return Zero on success, error number otherwise. 243 */ 244 static errno_t sun4u_dev_add(ddf_dev_t *dev) 245 245 { 246 246 ddf_msg(LVL_DEBUG, "sun4u_dev_add, device handle = %d",
Note:
See TracChangeset
for help on using the changeset viewer.