On Jul 23 2007 15:18, Yoann Padioleau wrote: > >Here is an excerpt of the semantic patch that performs the transformation > >@@ > >- (T*) dev->priv >+ netdev_priv(dev)
Note that dev->priv is a void*, and hence does not need casting. So dev->priv may also appear without one. > { > >- struct xl_private *xl_priv = (struct xl_private *)dev->priv ; >+ struct xl_private *xl_priv = netdev_priv(dev) ; > struct xl_tx_desc *txd ; > u8 __iomem *xl_mmio = xl_priv->xl_mmio ; > int i ; Jan -- - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/