On Thu, 2012-08-16 at 01:53 +0800, cj...@qca.qualcomm.com wrote: > From: Cloud Ren <cj...@qca.qualcomm.com> > > This driver support two new ethernet chipsets: > 1969:1091 - AR8161 Gigabit Ethernet > 1969:1090 - AR8162 Fast Ethernet
[] > diff --git a/drivers/net/ethernet/atheros/alx/alx_main.c > b/drivers/net/ethernet/atheros/alx/alx_main.c [] > +/* > + * alx_hw_printk > + */ > +void alx_hw_printk(const char *level, const struct alx_hw *hw, > + const char *fmt, ...) > +{ > + struct va_format vaf; > + va_list args; > + > + va_start(args, fmt); > + vaf.fmt = fmt; > + vaf.va = &args; > + > + if (hw && hw->adpt && hw->adpt->netdev) > + __netdev_printk(level, hw->adpt->netdev, &vaf); Hi Cloud. Please convert this to netdev_printk(level, hw->adpt->netdev, "%pV", &vaf); I will submit a patch soon to make the __netdev_printk variant static. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/