| To: | "Maciej W. Rozycki" <macro@linux-mips.org> |
|---|---|
| Subject: | Re: [PATCH 2.6.20-rc1 01/10] TURBOchannel update to the driver model |
| From: | Andrew Morton <akpm@osdl.org> |
| Date: | Wed, 20 Dec 2006 20:54:06 -0800 |
| Cc: | Ralf Baechle <ralf@linux-mips.org>, Jeff Garzik <jgarzik@pobox.com>, Antonino Daplas <adaplas@pol.net>, James.Bottomley@SteelEye.com, linux-mips@linux-mips.org, linux-kernel@vger.kernel.org, netdev@vger.kernel.org, linux-fbdev-devel@lists.sourceforge.net, linux-scsi@vger.kernel.org |
| In-reply-to: | <Pine.LNX.4.64N.0612201139080.11005@blysk.ds.pg.gda.pl> |
| Original-recipient: | rfc822;linux-mips@linux-mips.org |
| References: | <Pine.LNX.4.64N.0612201139080.11005@blysk.ds.pg.gda.pl> |
| Sender: | linux-mips-bounce@linux-mips.org |
On Wed, 20 Dec 2006 12:01:30 +0000 (GMT)
"Maciej W. Rozycki" <macro@linux-mips.org> wrote:
> +/**
> + * tc_register_driver - register a new TC driver
> + * @drv: the driver structure to register
> + *
> + * Adds the driver structure to the list of registered drivers
> + * Returns a negative value on error, otherwise 0.
> + * If no error occurred, the driver remains registered even if
> + * no device was claimed during registration.
> + */
> +int tc_register_driver(struct tc_driver *tdrv)
> +{
> + return driver_register(&tdrv->driver);
> +}
> +EXPORT_SYMBOL(tc_register_driver);
> +
> +/**
> + * tc_unregister_driver - unregister a TC driver
> + * @drv: the driver structure to unregister
> + *
> + * Deletes the driver structure from the list of registered TC drivers,
> + * gives it a chance to clean up by calling its remove() function for
> + * each device it was responsible for, and marks those devices as
> + * driverless.
> + */
> +void tc_unregister_driver(struct tc_driver *tdrv)
> +{
> + driver_unregister(&tdrv->driver);
> +}
> +EXPORT_SYMBOL(tc_unregister_driver);
I spose making these inline would save a bit of code, stack space and
a couple of exports.
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | Re: [PATCH 2.6.20-rc1 03/10] defxx: TURBOchannel support, Andrew Morton |
|---|---|
| Next by Date: | Re: [PATCH 2.6.20-rc1 05/10] if_fddi.h: Add a missing inclusion, Andrew Morton |
| Previous by Thread: | [PATCH 2.6.20-rc1 01/10] TURBOchannel update to the driver model, Maciej W. Rozycki |
| Next by Thread: | [PATCH 2.6.20-rc1 02/10] TURBOchannel support for the DECstation, Maciej W. Rozycki |
| Indexes: | [Date] [Thread] [Top] [All Lists] |