Home | History | Annotate | Download | only in asm-x86

Lines Matching refs:idx

48  * highger than 1) use fixmap_set(idx,phys) to associate
101 extern void __set_fixmap (enum fixed_addresses idx,
105 #define set_fixmap(idx, phys) \
106 __set_fixmap(idx, phys, PAGE_KERNEL)
110 #define set_fixmap_nocache(idx, phys) \
111 __set_fixmap(idx, phys, PAGE_KERNEL_NOCACHE)
113 #define clear_fixmap(idx) \
114 __set_fixmap(idx, 0, __pgprot(0))
129 * 'index to address' translation. If anyone tries to use the idx
133 static __always_inline unsigned long fix_to_virt(const unsigned int idx)
144 if (idx >= __end_of_fixed_addresses)
147 return __fix_to_virt(idx);