diff options
author | Ioana Ciornei | 2018-12-10 16:50:18 +0000 |
---|---|---|
committer | Li Yang | 2019-01-11 15:06:54 -0600 |
commit | cf9ff75d15a9bbd625519997c2ca864d1fa80227 (patch) | |
tree | 81604ab0c01c2856e137ddde6c5b7d0098bb60e7 /include/soc/fsl | |
parent | 9182ee2840a99d8f3bc7b4332fc93c03c2016fd6 (diff) |
soc: fsl: dpio: store a backpointer to the device backing the dpaa2_io
Add a new field in the dpaa2_io structure to hold a backpointer to the
actual DPIO device.
Signed-off-by: Ioana Ciornei <ioana.ciornei@nxp.com>
Signed-off-by: Li Yang <leoyang.li@nxp.com>
Diffstat (limited to 'include/soc/fsl')
-rw-r--r-- | include/soc/fsl/dpaa2-io.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/soc/fsl/dpaa2-io.h b/include/soc/fsl/dpaa2-io.h index 243119c53cdf..e252066d1f43 100644 --- a/include/soc/fsl/dpaa2-io.h +++ b/include/soc/fsl/dpaa2-io.h @@ -57,7 +57,8 @@ struct dpaa2_io_desc { u32 qman_version; }; -struct dpaa2_io *dpaa2_io_create(const struct dpaa2_io_desc *desc); +struct dpaa2_io *dpaa2_io_create(const struct dpaa2_io_desc *desc, + struct device *dev); void dpaa2_io_down(struct dpaa2_io *d); |