Re: [PATCH v1 06/14] nvmem: core: introduce NVMEM layouts
From: Michael Walle <hidden>
Date: 2022-08-26 08:16:20
Also in:
linux-arm-kernel, linux-devicetree, lkml
From: Michael Walle <hidden>
Date: 2022-08-26 08:16:20
Also in:
linux-arm-kernel, linux-devicetree, lkml
Am 2022-08-25 23:44, schrieb Michael Walle:
+struct nvmem_layout {
+ const char *name;
+ const struct of_device_id *of_match_table;
+ int (*add_cells)(struct nvmem_device *nvmem, struct nvmem_layout
*layout);This must be: int (*add_cells)(struct device *dev, struct nvmem_device *nvmem, struct nvmem_layout *layout);
+ struct list_head node; +}; +