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

Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/rkuo/linux-hexagon-kernel

Pull hexagon fixes from Richard Kuo:
"Some small fixes for module compilation"

* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/rkuo/linux-hexagon-kernel:
hexagon: export csum_partial_copy_nocheck
hexagon: add memset_io() helper

+7
+6
arch/hexagon/include/asm/io.h
··· 216 216 memcpy((void *) dst, src, count); 217 217 } 218 218 219 + static inline void memset_io(volatile void __iomem *addr, int value, 220 + size_t size) 221 + { 222 + memset((void __force *)addr, value, size); 223 + } 224 + 219 225 #define PCI_IO_ADDR (volatile void __iomem *) 220 226 221 227 /*
+1
arch/hexagon/lib/checksum.c
··· 199 199 memcpy(dst, src, len); 200 200 return csum_partial(dst, len, sum); 201 201 } 202 + EXPORT_SYMBOL(csum_partial_copy_nocheck);