* [PATCH] cdev: When creating a new cdev, initialize device_node
@ 2015-12-11 0:23 Trent Piepho
2015-12-14 10:25 ` Sascha Hauer
0 siblings, 1 reply; 2+ messages in thread
From: Trent Piepho @ 2015-12-11 0:23 UTC (permalink / raw)
To: barebox
If a new cdev doesn't have a device_node defined when passed to
devfs_create(), set it to the device_node of the parent device, if one
exists.
For non-partitions, like ocotp or eeprom devices, this is the correct
thing to do. Partitions need to use, and do use, a different node.
The code from commit 274e0b8dc48956babeaa2faf70bf8066e656b621 to set
device_node in ocotp can be removed.
Signed-off-by: Trent Piepho <tpiepho@kymetacorp.com>
---
Tested this to work for loading the env from an at24 eeprom. Should work
for any other non-partitioned device too.
arch/arm/mach-imx/ocotp.c | 1 -
fs/devfs-core.c | 5 ++++-
2 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/arch/arm/mach-imx/ocotp.c b/arch/arm/mach-imx/ocotp.c
index 6ff5ee4..c99a003 100644
--- a/arch/arm/mach-imx/ocotp.c
+++ b/arch/arm/mach-imx/ocotp.c
@@ -426,7 +426,6 @@ static int imx_ocotp_probe(struct device_d *dev)
cdev->priv = priv;
cdev->size = 192;
cdev->name = "imx-ocotp";
- cdev->device_node = dev->device_node;
ret = devfs_create(cdev);
diff --git a/fs/devfs-core.c b/fs/devfs-core.c
index 2541ea3..a5ac5a3 100644
--- a/fs/devfs-core.c
+++ b/fs/devfs-core.c
@@ -260,8 +260,11 @@ int devfs_create(struct cdev *new)
return -EEXIST;
list_add_tail(&new->list, &cdev_list);
- if (new->dev)
+ if (new->dev) {
list_add_tail(&new->devices_list, &new->dev->cdevs);
+ if (!new->device_node)
+ new->device_node = new->dev->device_node;
+ }
return 0;
}
--
1.8.3.1
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] cdev: When creating a new cdev, initialize device_node
2015-12-11 0:23 [PATCH] cdev: When creating a new cdev, initialize device_node Trent Piepho
@ 2015-12-14 10:25 ` Sascha Hauer
0 siblings, 0 replies; 2+ messages in thread
From: Sascha Hauer @ 2015-12-14 10:25 UTC (permalink / raw)
To: Trent Piepho; +Cc: barebox
On Fri, Dec 11, 2015 at 12:23:11AM +0000, Trent Piepho wrote:
> If a new cdev doesn't have a device_node defined when passed to
> devfs_create(), set it to the device_node of the parent device, if one
> exists.
>
> For non-partitions, like ocotp or eeprom devices, this is the correct
> thing to do. Partitions need to use, and do use, a different node.
>
> The code from commit 274e0b8dc48956babeaa2faf70bf8066e656b621 to set
> device_node in ocotp can be removed.
>
> Signed-off-by: Trent Piepho <tpiepho@kymetacorp.com>
> ---
> Tested this to work for loading the env from an at24 eeprom. Should work
> for any other non-partitioned device too.
Applied, thanks
Sascha
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2015-12-14 10:26 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-12-11 0:23 [PATCH] cdev: When creating a new cdev, initialize device_node Trent Piepho
2015-12-14 10:25 ` Sascha Hauer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox