https://jxself.org/git/linux-libre.git
Raw File
Tip revision: 21ae06c6a7499b1e96b87b018cb6183313bf8b9c authored by Jason Self on 13 February 2014, 21:51:12 UTC
Linux-libre 3.12.11-gnu
Tip revision: 21ae06c
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