https://github.com/raspberrypi/linux
Raw File
Tip revision: 74105533c976f03ef137d9d8c43464b09a79b141 authored by Phil Elwell on 09 March 2016, 13:28:24 UTC
serial: Take care starting a hung-up tty's port
Tip revision: 7410553
fb.h
#ifndef __ASM_GENERIC_FB_H_
#define __ASM_GENERIC_FB_H_
#include <linux/fb.h>

#define fb_pgprotect(...) do {} while (0)

static inline int fb_is_primary_device(struct fb_info *info)
{
	return 0;
}

#endif /* __ASM_GENERIC_FB_H_ */
back to top