diff options
Diffstat (limited to 'firmware/target/hosted/lcd-linuxfb.c')
-rw-r--r-- | firmware/target/hosted/lcd-linuxfb.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/firmware/target/hosted/lcd-linuxfb.c b/firmware/target/hosted/lcd-linuxfb.c index e85b920fef..14c8c30f89 100644 --- a/firmware/target/hosted/lcd-linuxfb.c +++ b/firmware/target/hosted/lcd-linuxfb.c @@ -47,17 +47,12 @@ static void redraw(void) void lcd_init_device(void) { const char * const fb_dev = "/dev/fb0"; - fd = open(fb_dev, O_RDWR /* | O_SYNC */); + fd = open(fb_dev, O_RDWR | O_CLOEXEC); if(fd < 0) { panicf("Cannot open framebuffer: %s\n", fb_dev); } - if (fcntl( fd, F_SETFD, FD_CLOEXEC ) < 0) - { - panicf("Can't set CLOEXEC"); - } - /* get fixed and variable information */ if(ioctl(fd, FBIOGET_FSCREENINFO, &finfo) < 0) { |