https://jxself.org/git/linux-libre.git
Raw File
Tip revision: bef5acd7961ba6f246f7ff99598a0d3d3a59c824 authored by Jason Self on 30 January 2015, 12:33:14 UTC
Linux-libre 3.12.37-gnu
Tip revision: bef5acd
fb.h
#ifndef _ASM_FB_H_
#define _ASM_FB_H_
#include <linux/device.h>

/* Caching is off in the I/O space quadrant by design.  */
#define fb_pgprotect(...) do {} while (0)

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

#endif /* _ASM_FB_H_ */
back to top