Subversion Repositories Kolibri OS

Rev

Rev 6934 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 6934 Rev 7143
Line 70... Line 70...
70
#endif
70
#endif
Line 71... Line 71...
71
 
71
 
72
/* Return a pointer with offset calculated */
72
/* Return a pointer with offset calculated */
73
#define __set_fixmap_offset(idx, phys, flags)		      \
73
#define __set_fixmap_offset(idx, phys, flags)				\
74
({							      \
74
({									\
75
	unsigned long addr;				      \
75
	unsigned long ________addr;					\
76
	__set_fixmap(idx, phys, flags);			      \
76
	__set_fixmap(idx, phys, flags);					\
77
	addr = fix_to_virt(idx) + ((phys) & (PAGE_SIZE - 1)); \
77
	________addr = fix_to_virt(idx) + ((phys) & (PAGE_SIZE - 1));	\
78
	addr;						      \
78
	________addr;							\
Line 79... Line 79...
79
})
79
})
80
 
80