/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __XZ_CONFIG_H__ #define __XZ_CONFIG_H__ /* * most of this is copied from lib/xz/xz_private.h, we can't use their defines * since the boot wrapper is not built in the same environment as the rest of * the kernel. */ #include "types.h" #include "swab.h"
static inline uint32_t swab32p(void *p) { uint32_t *q = p; return swab32(*q); }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Oliver O'Halloran | 24 | 100.00% | 1 | 100.00% |
Total | 24 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Oliver O'Halloran | 99 | 99.00% | 1 | 50.00% |
Greg Kroah-Hartman | 1 | 1.00% | 1 | 50.00% |
Total | 100 | 100.00% | 2 | 100.00% |