Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

fixmap: Remove unused set_fixmap_offset_io()

The macro set_fixmap_offset_io() was added in commit f774b7d10e21
("arm64: fixmap: fix missing sub-page offset for earlyprintk") but then
commit 8ef0ed95ee04 ("arm64: remove arch specific earlyprintk") removed
the file causing the only user to be removed when the two commits were
merged. Since this has never been used again since the v3.15 release
remove it.

Signed-off-by: Steven Price <steven.price@arm.com>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>

authored by

Steven Price and committed by
Arnd Bergmann
b4e89190 3db80c99

-3
-3
include/asm-generic/fixmap.h
··· 97 97 #define set_fixmap_io(idx, phys) \ 98 98 __set_fixmap(idx, phys, FIXMAP_PAGE_IO) 99 99 100 - #define set_fixmap_offset_io(idx, phys) \ 101 - __set_fixmap_offset(idx, phys, FIXMAP_PAGE_IO) 102 - 103 100 #endif /* __ASSEMBLY__ */ 104 101 #endif /* __ASM_GENERIC_FIXMAP_H */