Jan Engelhardt <[EMAIL PROTECTED]> writes: > 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.
Yes you are right. I have shown only an excerpt of the semantic patch. Sorry. There is another rule: @ rule3 depends on rule1 && !rule1bis @ struct net_device *dev; @@ - dev->priv + netdev_priv(dev) If you look at my patch there is one such case - struct tok_info *ti = dev->priv; + struct tok_info *ti = netdev_priv(dev); - 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/