https://jxself.org/git/linux-libre.git
Raw File
Tip revision: d94ed7e4bbc98a368ee835d616c62349fdbd27bd authored by Jason Self on 07 October 2012, 21:44:29 UTC
Linux-libre 2.6.32.60-gnu1
Tip revision: d94ed7e
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