https://github.com/raspberrypi/linux
Raw File
Tip revision: 7175dd6f062127fb973ef2ba03566c02b5b413bc authored by Daniel Matuschek on 17 October 2017, 08:30:28 UTC
Fixed a bug when using 352.8kHz sample rate
Tip revision: 7175dd6
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