mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 01:31:44 +00:00
367b8112fe
Move all header files for xtensa to arch/xtensa/include and platform and variant header files to the appropriate arch/xtensa/platforms/ and arch/xtensa/variants/ directories. Moving the files gets also rid of all uses of symlinks in the Makefile. This has been completed already for the majority of the architectures and xtensa is one out of six missing. Signed-off-by: Sam Ravnborg <sam@ravnborg.org> Signed-off-by: Chris Zankel <chris@zankel.net>
13 lines
205 B
C
13 lines
205 B
C
#ifndef _ASM_FB_H_
|
|
#define _ASM_FB_H_
|
|
#include <linux/fb.h>
|
|
|
|
#define fb_pgprotect(...) do {} while (0)
|
|
|
|
static inline int fb_is_primary_device(struct fb_info *info)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
#endif /* _ASM_FB_H_ */
|