kernel: fix compile error inside adm6996.c
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
This commit is contained in:
		| @@ -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); | ||||
| 	} | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 John Crispin
					John Crispin