mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-05-05 14:53:45 +00:00
mtd: name the mtd device with an optional label property
This can be used to easily identify a specific chip on a system with multiple chips. Suggested-by: Boris Brezillon <boris.brezillon@free-electrons.com> Signed-off-by: Cédric Le Goater <clg@kaod.org> Reviewed-by: Marek Vasut <marek.vasut@gmail.com> Signed-off-by: Brian Norris <computersforpeace@gmail.com>
This commit is contained in:
parent
398d8739bb
commit
28309572aa
1 changed files with 3 additions and 0 deletions
|
@ -24,6 +24,7 @@
|
||||||
#include <linux/uio.h>
|
#include <linux/uio.h>
|
||||||
#include <linux/notifier.h>
|
#include <linux/notifier.h>
|
||||||
#include <linux/device.h>
|
#include <linux/device.h>
|
||||||
|
#include <linux/of.h>
|
||||||
|
|
||||||
#include <mtd/mtd-abi.h>
|
#include <mtd/mtd-abi.h>
|
||||||
|
|
||||||
|
@ -386,6 +387,8 @@ static inline void mtd_set_of_node(struct mtd_info *mtd,
|
||||||
struct device_node *np)
|
struct device_node *np)
|
||||||
{
|
{
|
||||||
mtd->dev.of_node = np;
|
mtd->dev.of_node = np;
|
||||||
|
if (!mtd->name)
|
||||||
|
of_property_read_string(np, "label", &mtd->name);
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline struct device_node *mtd_get_of_node(struct mtd_info *mtd)
|
static inline struct device_node *mtd_get_of_node(struct mtd_info *mtd)
|
||||||
|
|
Loading…
Add table
Reference in a new issue