diff options
| author | Greg Ungerer <gerg@snapgear.com> | 2003-07-07 09:22:14 -0700 |
|---|---|---|
| committer | Linus Torvalds <torvalds@home.osdl.org> | 2003-07-07 09:22:14 -0700 |
| commit | a3264e91e1ad176513582c841ef60d80ab028c23 (patch) | |
| tree | 084d16c3408b5a5ab717baa43f32ab4e243e70b7 | |
| parent | b3f87eece254fe3a2f16e296ccba8fd7de7e19c3 (diff) | |
[PATCH] clean module_exit in m68knommu serial drivers
Remove un-used commented module_exit functions from m68knommu
ColdFire and 68328 serial drivers. These drivers currently cannot
be configured as modules, and they have no exit functions.
| -rw-r--r-- | drivers/serial/68328serial.c | 1 | ||||
| -rw-r--r-- | drivers/serial/mcfserial.c | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/drivers/serial/68328serial.c b/drivers/serial/68328serial.c index 7ff8ff5dbecc..f212ae0992d1 100644 --- a/drivers/serial/68328serial.c +++ b/drivers/serial/68328serial.c @@ -1533,7 +1533,6 @@ void unregister_serial(int line) } module_init(rs68328_init); -/* DAVIDM module_exit(rs68328_fini); */ diff --git a/drivers/serial/mcfserial.c b/drivers/serial/mcfserial.c index 38bcb8765456..c6b7caa224df 100644 --- a/drivers/serial/mcfserial.c +++ b/drivers/serial/mcfserial.c @@ -1643,7 +1643,6 @@ mcfrs_init(void) } module_init(mcfrs_init); -/* DAVIDM module_exit(mcfrs_fini); */ /****************************************************************************/ /* Serial Console */ |
