diff options
author | Simon Glass <sjg@chromium.org> | 2020-02-03 07:36:17 -0700 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2020-02-05 21:48:22 -0700 |
commit | f217651575f30256955f22a1691115a70e7f5934 (patch) | |
tree | 422f580407bce71672737bd358723f47be495a22 /include/linux/compat.h | |
parent | 336d4615f8fa774557d14f9b3245daa9e5fe3dbc (diff) | |
download | u-boot-f217651575f30256955f22a1691115a70e7f5934.tar.gz u-boot-f217651575f30256955f22a1691115a70e7f5934.tar.bz2 u-boot-f217651575f30256955f22a1691115a70e7f5934.zip |
dm: core: Drop the inclusion of linux/compat.h in dm.h
Most files don't need this header and it pulls in quite of lots of stuff,
malloc() in particular. Drop it.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/linux/compat.h')
-rw-r--r-- | include/linux/compat.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/linux/compat.h b/include/linux/compat.h index d0f51baab4..171188a76f 100644 --- a/include/linux/compat.h +++ b/include/linux/compat.h @@ -123,7 +123,10 @@ static inline void kmem_cache_destroy(struct kmem_cache *cachep) #define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c)) +/* This is also defined in ARMv8's mmu.h */ +#ifndef PAGE_SIZE #define PAGE_SIZE 4096 +#endif /* drivers/char/random.c */ #define get_random_bytes(...) |