forked from Openwrt/openwrt
323072f3a6
They add NVMEM layouts support. It allows handling NVMEM content independently of NVMEM device access. Skip U-Boot env data patch for now as it break our downstream MAC hacks. Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
25 lines
1.1 KiB
Diff
25 lines
1.1 KiB
Diff
From 6b13e4b6a9a45028ac730e550380077df1845912 Mon Sep 17 00:00:00 2001
|
|
From: Miquel Raynal <miquel.raynal@bootlin.com>
|
|
Date: Tue, 4 Apr 2023 18:21:47 +0100
|
|
Subject: [PATCH] nvmem: layouts: onie-tlv: Drop wrong module alias
|
|
|
|
The MODULE_ALIAS macro is misused here as it carries the
|
|
description. There is currently no relevant alias to provide so let's
|
|
just drop it.
|
|
|
|
Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com>
|
|
Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
|
|
Link: https://lore.kernel.org/r/20230404172148.82422-40-srinivas.kandagatla@linaro.org
|
|
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
|
|
---
|
|
drivers/nvmem/layouts/onie-tlv.c | 1 -
|
|
1 file changed, 1 deletion(-)
|
|
|
|
--- a/drivers/nvmem/layouts/onie-tlv.c
|
|
+++ b/drivers/nvmem/layouts/onie-tlv.c
|
|
@@ -242,4 +242,3 @@ module_nvmem_layout_driver(onie_tlv_layo
|
|
MODULE_LICENSE("GPL");
|
|
MODULE_AUTHOR("Miquel Raynal <miquel.raynal@bootlin.com>");
|
|
MODULE_DESCRIPTION("NVMEM layout driver for Onie TLV table parsing");
|
|
-MODULE_ALIAS("NVMEM layout driver for Onie TLV table parsing");
|