https://jxself.org/git/linux-libre.git
Raw File
Tip revision: 90a35ab9c7a966a228f9178b733830da1e2a3631 authored by Jason Self on 06 September 2016, 14:13:30 UTC
Linux-libre 3.12.63-gnu
Tip revision: 90a35ab
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