diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2021-11-10 12:59:52 +0200 |
---|---|---|
committer | Li Yang <leoyang.li@nxp.com> | 2022-02-18 17:11:17 -0600 |
commit | 988f0a9045b0058a43ccee764a671dfab81e6d15 (patch) | |
tree | 6b6517e418416a9aabdba9d44bbb73f7a27f32b3 /include/soc/fsl/dpaa2-fd.h | |
parent | 6b4266b8deb857ce2dc2a9b769b242865b9a0bce (diff) |
soc: fsl: Replace kernel.h with the necessary inclusions
When kernel.h is used in the headers it adds a lot into dependency hell,
especially when there are circular dependencies are involved.
Replace kernel.h inclusion with the list of what is really being used.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Li Yang <leoyang.li@nxp.com>
Diffstat (limited to 'include/soc/fsl/dpaa2-fd.h')
-rw-r--r-- | include/soc/fsl/dpaa2-fd.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/soc/fsl/dpaa2-fd.h b/include/soc/fsl/dpaa2-fd.h index 90ae8d191f1a..bae490cac0aa 100644 --- a/include/soc/fsl/dpaa2-fd.h +++ b/include/soc/fsl/dpaa2-fd.h @@ -7,7 +7,8 @@ #ifndef __FSL_DPAA2_FD_H #define __FSL_DPAA2_FD_H -#include <linux/kernel.h> +#include <linux/byteorder/generic.h> +#include <linux/types.h> /** * DOC: DPAA2 FD - Frame Descriptor APIs for DPAA2 |