Ralf Baechle wrote:
The meth ethernet driver for the SGI IP32 aka O2 is so far still an old
style driver which does not use the device driver model. This is now
causing issues with some udev based gadgetry in debian-stable. Fixed by
converting the meth driver to a platform device.
Signed-off-b
The meth ethernet driver for the SGI IP32 aka O2 is so far still an old
style driver which does not use the device driver model. This is now
causing issues with some udev based gadgetry in debian-stable. Fixed by
converting the meth driver to a platform device.
Signed-off-by: Ralf Baechle <[EMAI
On Wed, May 23, 2007 at 01:02:18PM -0700, Shane McDonald wrote:
> > static void __exit meth_exit_module(void)
> > {
> > - unregister_netdev(meth_dev);
> > - free_netdev(meth_dev);
> > + platform_driver_register(&meth_driver);
> > }
>
>
>
> platform_d
Should this be:
> static void __exit meth_exit_module(void)
> {
> - unregister_netdev(meth_dev);
> - free_netdev(meth_dev);
> + platform_driver_register(&meth_driver);
> }
platform_driver_unregister(&meth_driver);
^^
Shan
On Wed, May 23, 2007 at 09:43:30AM +0100, Ralf Baechle wrote:
> The meth ethernet driver for the SGI IP32 aka O2 is so far still an old
> style driver which does not use the device driver model. This is now
> causing issues with some udev based gadgetry in debian-stable. Fixed by
> converting th
The meth ethernet driver for the SGI IP32 aka O2 is so far still an old
style driver which does not use the device driver model. This is now
causing issues with some udev based gadgetry in debian-stable. Fixed by
converting the meth driver to a platform device.
Signed-off-by: Ralf Baechle <[EMAI