Re: [PATCH v2 3/5] nvmem: expose nvmem cells as cdev

2024-06-14 Thread Marco Felsch
On 24-06-14, Sascha Hauer wrote: > On Thu, Jun 13, 2024 at 03:15:29PM +0200, Marco Felsch wrote: > > Expose the nvmem cells via cdevs which is our equivalent to the Linux > > sysfs exposure. This allows the easier user queries for board code and > > shell. Keep the Linux function name scheme for >

Re: [PATCH v2 3/5] nvmem: expose nvmem cells as cdev

2024-06-14 Thread Sascha Hauer
On Thu, Jun 13, 2024 at 03:15:29PM +0200, Marco Felsch wrote: > Expose the nvmem cells via cdevs which is our equivalent to the Linux > sysfs exposure. This allows the easier user queries for board code and > shell. Keep the Linux function name scheme for > nvmem_populate_sysfs_cells() to reduce th

[PATCH v2 3/5] nvmem: expose nvmem cells as cdev

2024-06-13 Thread Marco Felsch
Expose the nvmem cells via cdevs which is our equivalent to the Linux sysfs exposure. This allows the easier user queries for board code and shell. Keep the Linux function name scheme for nvmem_populate_sysfs_cells() to reduce the diff for nvmem_register() function. Signed-off-by: Marco Felsch --