Changes in uspace/srv/hid/output/port/kfb.c [b7fd2a0:38d150e] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/output/port/kfb.c
rb7fd2a0 r38d150e 419 419 } 420 420 421 static errno_t kfb_yield(fbdev_t *dev)421 static int kfb_yield(fbdev_t *dev) 422 422 { 423 423 if (kfb.backbuf == NULL) { … … 435 435 } 436 436 437 static errno_t kfb_claim(fbdev_t *dev)437 static int kfb_claim(fbdev_t *dev) 438 438 { 439 439 if (kfb.backbuf == NULL) … … 460 460 } 461 461 462 static errno_t kfb_get_resolution(fbdev_t *dev, sysarg_t *width, sysarg_t *height)462 static int kfb_get_resolution(fbdev_t *dev, sysarg_t *width, sysarg_t *height) 463 463 { 464 464 *width = kfb.width; … … 474 474 } 475 475 476 static errno_t kfb_vp_create(fbdev_t *dev, fbvp_t *vp)476 static int kfb_vp_create(fbdev_t *dev, fbvp_t *vp) 477 477 { 478 478 kfb_vp_t *kfb_vp = malloc(sizeof(kfb_vp_t)); … … 620 620 } 621 621 622 errno_t kfb_init(void)622 int kfb_init(void) 623 623 { 624 624 sysarg_t present; 625 errno_t rc = sysinfo_get_value("fb", &present);625 int rc = sysinfo_get_value("fb", &present); 626 626 if (rc != EOK) 627 627 present = false;
Note:
See TracChangeset
for help on using the changeset viewer.