kernel: fix compile error inside adm6996.c
authorJohn Crispin <john@openwrt.org>
Mon, 9 Feb 2015 12:09:17 +0000 (12:09 +0000)
committerJohn Crispin <john@openwrt.org>
Mon, 9 Feb 2015 12:09:17 +0000 (12:09 +0000)
drivers/net/phy/adm6996.c:881:5: warning: format '%lu' expects argument of type 'long unsigned int', but argument 5 has type 'u32' [-Wformat=]

Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 44333

target/linux/generic/files/drivers/net/phy/adm6996.c

index cbb3e85fba58d23fe30ac5654840416dad46273b..bf5ed1593365f3bf557d448206ea7cadd63e77ba 100644 (file)
@@ -876,7 +876,7 @@ adm6996_sw_get_port_mib(struct switch_dev *dev,
                reg = r16(priv, adm6996_mibs[i].offset + ADM_OFFSET_PORT(port));
                reg += r16(priv, adm6996_mibs[i].offset + ADM_OFFSET_PORT(port) + 1) << 16;
                len += snprintf(buf + len, sizeof(priv->buf) - len,
-                               "%-12s: %lu\n",
+                               "%-12s: %u\n",
                                adm6996_mibs[i].name,
                                reg);
        }