On Sun, 2009-05-17 at 17:28 +0800, Julia Lawall wrote: > > From: Julia Lawall <julia@xxxxxxx> > > Eliminate direct accesses to the driver_data field. > cf 82ab13b26f15f49be45f15ccc96bfa0b81dfd015 > > The semantic patch that makes this change is as follows: > (http://www.emn.fr/x-info/coccinelle/) > > // <smpl> > @@ > struct device *dev; > expression E; > type T; > @@ > > - dev->driver_data = (T)E > + dev_set_drvdata(dev, E) > > @@ > struct device *dev; > type T; > @@ > > - (T)dev->driver_data > + dev_get_drvdata(dev) > // </smpl> > > Signed-off-by: Julia Lawall <julia@xxxxxxx> Acked-by: Zhu Yi <yi.zhu@xxxxxxxxx> Thanks, -yi -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html