nvmem: Simplify the ->add_cells() hook
authorMiquel Raynal <miquel.raynal@bootlin.com>
Fri, 15 Dec 2023 11:15:30 +0000 (11:15 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 15 Dec 2023 12:30:07 +0000 (13:30 +0100)
The layout entry is not used and will anyway be made useless by the new
layout bus infrastructure coming next, so drop it. While at it, clarify
the kdoc entry.

Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com>
Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
Link: https://lore.kernel.org/r/20231215111536.316972-5-srinivas.kandagatla@linaro.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/nvmem/core.c
drivers/nvmem/layouts/onie-tlv.c
drivers/nvmem/layouts/sl28vpd.c
include/linux/nvmem-provider.h

index b5e5ce67398ffa59863268922e9c5356a088ddb2..f63db5e01fca96dbdc9d469fdd9d4026eb43346f 100644 (file)
@@ -816,7 +816,7 @@ static int nvmem_add_cells_from_layout(struct nvmem_device *nvmem)
        int ret;
 
        if (layout && layout->add_cells) {
-               ret = layout->add_cells(&nvmem->dev, nvmem, layout);
+               ret = layout->add_cells(&nvmem->dev, nvmem);
                if (ret)
                        return ret;
        }
index 59fc87ccfcffeb430d7a9294d01db8fd3b454ec2..defd42d4375cc16be409453f60e11c3fee62e778 100644 (file)
@@ -182,8 +182,7 @@ static bool onie_tlv_crc_is_valid(struct device *dev, size_t table_len, u8 *tabl
        return true;
 }
 
-static int onie_tlv_parse_table(struct device *dev, struct nvmem_device *nvmem,
-                               struct nvmem_layout *layout)
+static int onie_tlv_parse_table(struct device *dev, struct nvmem_device *nvmem)
 {
        struct onie_tlv_hdr hdr;
        size_t table_len, data_len, hdr_len;
index 05671371f63166edb28231ef12747fe40d22913d..26c7cf21b523364da542a9057f94d636b402f6d1 100644 (file)
@@ -80,8 +80,7 @@ static int sl28vpd_v1_check_crc(struct device *dev, struct nvmem_device *nvmem)
        return 0;
 }
 
-static int sl28vpd_add_cells(struct device *dev, struct nvmem_device *nvmem,
-                            struct nvmem_layout *layout)
+static int sl28vpd_add_cells(struct device *dev, struct nvmem_device *nvmem)
 {
        const struct nvmem_cell_info *pinfo;
        struct nvmem_cell_info info = {0};
index e5de21516387e075505ee9873e2dcc9d12dd0d2e..3939991b3c5f9f2bf6596a06e1b98d60dc2fafea 100644 (file)
@@ -156,9 +156,8 @@ struct nvmem_cell_table {
  *
  * @name:              Layout name.
  * @of_match_table:    Open firmware match table.
- * @add_cells:         Will be called if a nvmem device is found which
- *                     has this layout. The function will add layout
- *                     specific cells with nvmem_add_one_cell().
+ * @add_cells:         Called to populate the layout using
+ *                     nvmem_add_one_cell().
  * @fixup_cell_info:   Will be called before a cell is added. Can be
  *                     used to modify the nvmem_cell_info.
  * @owner:             Pointer to struct module.
@@ -172,8 +171,7 @@ struct nvmem_cell_table {
 struct nvmem_layout {
        const char *name;
        const struct of_device_id *of_match_table;
-       int (*add_cells)(struct device *dev, struct nvmem_device *nvmem,
-                        struct nvmem_layout *layout);
+       int (*add_cells)(struct device *dev, struct nvmem_device *nvmem);
        void (*fixup_cell_info)(struct nvmem_device *nvmem,
                                struct nvmem_layout *layout,
                                struct nvmem_cell_info *cell);