https://jxself.org/git/linux-libre.git
Raw File
Tip revision: 7f0f104d408143ccdd855ef31d64fd9c12652914 authored by Jason Self on 23 March 2009, 21:56:09 UTC
Linux-libre 2.6.28.9-gnu1
Tip revision: 7f0f104
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