Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

Merge branch 'net-dsa-hellcreek-minor-cleanups'

Kurt Kanzenbach says:

====================
net: dsa: hellcreek: Minor cleanups

fix two minor issues in the hellcreek driver.
====================

Link: https://lore.kernel.org/r/20201121114455.22422-1-kurt@linutronix.de
Signed-off-by: Jakub Kicinski <kuba@kernel.org>

+2 -4
+1 -1
drivers/net/dsa/hirschmann/hellcreek.c
··· 1266 1266 1267 1267 ret = dsa_register_switch(hellcreek->ds); 1268 1268 if (ret) { 1269 - dev_err(dev, "Unable to register switch\n"); 1269 + dev_err_probe(dev, ret, "Unable to register switch\n"); 1270 1270 return ret; 1271 1271 } 1272 1272
+1 -3
net/dsa/tag_hellcreek.c
··· 8 8 * Based on tag_ksz.c. 9 9 */ 10 10 11 - #include <linux/etherdevice.h> 12 - #include <linux/list.h> 13 - #include <linux/slab.h> 11 + #include <linux/skbuff.h> 14 12 #include <net/dsa.h> 15 13 16 14 #include "dsa_priv.h"