generic: routerboot sysfs: move tag_show_u32()
authorThibaut VARÈNE <hacks@slashdirt.org>
Fri, 15 May 2020 16:00:08 +0000 (18:00 +0200)
committerKoen Vandeputte <koen.vandeputte@ncentric.com>
Thu, 28 May 2020 09:09:10 +0000 (11:09 +0200)
This routine will be shared between hard and soft config drivers.

Tested-by: Koen Vandeputte <koen.vandeputte@ncentric.com>
Tested-by: Roger Pueyo Centelles <roger.pueyo@guifi.net>
Signed-off-by: Thibaut VARÈNE <hacks@slashdirt.org>
target/linux/generic/files/drivers/platform/mikrotik/rb_hardconfig.c
target/linux/generic/files/drivers/platform/mikrotik/routerboot.c
target/linux/generic/files/drivers/platform/mikrotik/routerboot.h

index a03aa21b4d55ff7a54f9693c99cad2b0d95bd1d7..992689605d25f3983e642c08acd20815f524de02 100644 (file)
@@ -310,25 +310,6 @@ static struct hc_hwopt {
        },
 };
 
-static ssize_t hc_tag_show_u32(const u8 *pld, u16 pld_len, char *buf)
-{
-       char *out = buf;
-       u32 data;       // cpu-endian
-
-       /* Caller ensures pld_len > 0 */
-       if (pld_len % sizeof(data))
-               return -EINVAL;
-
-       data = *(u32 *)pld;
-
-       do {
-               out += sprintf(out, "0x%08x\n", data);
-               data++;
-       } while ((pld_len -= sizeof(data)));
-
-       return out - buf;
-}
-
 /*
  * The MAC is stored network-endian on all devices, in 2 32-bit segments:
  * <XX:XX:XX:XX> <XX:XX:00:00>. Kernel print has us covered.
@@ -389,7 +370,7 @@ static struct hc_attr {
 } hc_attrs[] = {
        {
                .tag_id = RB_ID_FLASH_INFO,
-               .tshow = hc_tag_show_u32,
+               .tshow = routerboot_tag_show_u32s,
                .kattr = __ATTR(flash_info, S_IRUSR, hc_attr_show, NULL),
        }, {
                .tag_id = RB_ID_MAC_ADDRESS_PACK,
@@ -409,11 +390,11 @@ static struct hc_attr {
                .kattr = __ATTR(board_serial, S_IRUSR, hc_attr_show, NULL),
        }, {
                .tag_id = RB_ID_MEMORY_SIZE,
-               .tshow = hc_tag_show_u32,
+               .tshow = routerboot_tag_show_u32s,
                .kattr = __ATTR(mem_size, S_IRUSR, hc_attr_show, NULL),
        }, {
                .tag_id = RB_ID_MAC_ADDRESS_COUNT,
-               .tshow = hc_tag_show_u32,
+               .tshow = routerboot_tag_show_u32s,
                .kattr = __ATTR(mac_count, S_IRUSR, hc_attr_show, NULL),
        }, {
                .tag_id = RB_ID_HW_OPTIONS,
index f496dd7e0c766b2ae08e3daaf687c836742eb174..47e4471f8e3108d8b9d04a1b465a1b8cfa44c382 100644 (file)
@@ -191,6 +191,25 @@ ssize_t routerboot_tag_show_string(const u8 *pld, u16 pld_len, char *buf)
        return scnprintf(buf, pld_len+1, "%s\n", pld);
 }
 
+ssize_t routerboot_tag_show_u32s(const u8 *pld, u16 pld_len, char *buf)
+{
+       char *out = buf;
+       u32 data;       // cpu-endian
+
+       /* Caller ensures pld_len > 0 */
+       if (pld_len % sizeof(data))
+               return -EINVAL;
+
+       data = *(u32 *)pld;
+
+       do {
+               out += sprintf(out, "0x%08x\n", data);
+               data++;
+       } while ((pld_len -= sizeof(data)));
+
+       return out - buf;
+}
+
 module_init(routerboot_init);
 module_exit(routerboot_exit);
 
index 5b644db4fef89bc939b678016b95f11bd03477ef..67d89808d566bccb8c2afe3bd87e03cc83fbea39 100644 (file)
@@ -32,5 +32,6 @@ int __init rb_softconfig_init(struct kobject *rb_kobj);
 void __exit rb_softconfig_exit(void);
 
 ssize_t routerboot_tag_show_string(const u8 *pld, u16 pld_len, char *buf);
+ssize_t routerboot_tag_show_u32s(const u8 *pld, u16 pld_len, char *buf);
 
 #endif /* _ROUTERBOOT_H_ */