https://jxself.org/git/linux-libre.git
Raw File
Tip revision: df992dfb3a9fc664a7cc8f6243ebe594649c00e9 authored by Jason Self on 26 August 2013, 00:43:33 UTC
Linux-libre 3.11-rc7-gnu
Tip revision: df992df
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