src/driver/fb_generic.h: use unified define for fb device name

This commit is contained in:
2018-07-29 14:40:07 +02:00
parent 101fbd7320
commit f81816df96
2 changed files with 5 additions and 3 deletions

View File

@@ -77,10 +77,10 @@ static int exec_list(void)
CFbAccelARM::CFbAccelARM()
{
fb_name = "armbox framebuffer";
fb_fd = open("/dev/fb0", O_RDWR);
fb_fd = open(FB_DEVICE, O_RDWR);
if (fb_fd < 0)
{
printf(LOGTAG "[bcm] /dev/fb0 %m");
printf(LOGTAG "[bcm] %s %m", FB_DEVICE);
}
if (exec_list())
{