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

Configure Feed

Select the types of activity you want to include in your feed.

at v4.6-rc6 12 lines 289 B view raw
1#ifndef __SW842_H__ 2#define __SW842_H__ 3 4#define SW842_MEM_COMPRESS (0xf000) 5 6int sw842_compress(const u8 *src, unsigned int srclen, 7 u8 *dst, unsigned int *destlen, void *wmem); 8 9int sw842_decompress(const u8 *src, unsigned int srclen, 10 u8 *dst, unsigned int *destlen); 11 12#endif