summaryrefslogtreecommitdiffstats
path: root/include/linux
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2024-03-11 11:21:51 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2024-03-13 12:01:21 +0100
commit2c74e7bbcd7bccfe281971cbb5050534c70dba36 (patch)
tree0bf04fd666721c7a6b9cad887426a4b02424fb1d /include/linux
parent3b0dbcfa4c84dfce9022537a062e2c0e100038c3 (diff)
downloadbarebox-2c74e7bbcd7bccfe281971cbb5050534c70dba36.tar.gz
barebox-2c74e7bbcd7bccfe281971cbb5050534c70dba36.tar.xz
nvmem: add nvmem_device_get_device()
We'll want to add a device parameter to the imx_ocotp0 device in the next step, but the device is private to the nvmem core. Add a getter function for it. Link: https://lore.barebox.org/20240311102152.360762-4-s.hauer@pengutronix.de Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/nvmem-provider.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/linux/nvmem-provider.h b/include/linux/nvmem-provider.h
index 3c30e18409..41c636b3a4 100644
--- a/include/linux/nvmem-provider.h
+++ b/include/linux/nvmem-provider.h
@@ -48,6 +48,7 @@ struct nvmem_device *nvmem_regmap_register(struct regmap *regmap, const char *na
struct nvmem_device *nvmem_regmap_register_with_pp(struct regmap *regmap,
const char *name, nvmem_cell_post_process_t cell_post_process);
struct nvmem_device *nvmem_partition_register(struct cdev *cdev);
+struct device *nvmem_device_get_device(struct nvmem_device *nvmem);
#else
@@ -73,5 +74,9 @@ static inline struct nvmem_device *nvmem_partition_register(struct cdev *cdev)
return ERR_PTR(-ENOSYS);
}
+static inline struct device *nvmem_device_get_device(struct nvmem_device *nvmem)
+{
+ return ERR_PTR(-ENOSYS);
+}
#endif /* CONFIG_NVMEM */
#endif /* ifndef _LINUX_NVMEM_PROVIDER_H */