diff options
author | Peter Osterlund <petero2@telia.com> | 2005-09-13 04:25:15 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-09-13 11:22:29 -0400 |
commit | fb911ee849756fc6c609dddded92d9207ff3fb29 (patch) | |
tree | 2eda87e13d7d5da91839a22b75c5ac7e12a0c849 /drivers/net/arcnet/com90io.c | |
parent | 8a1c17574a01555e5d3fdf56d8d72969904c91ca (diff) |
[PATCH] Remove unnecessary check_region references in comments
Remove check_region references from comments and printk statements so that
searching for real users of this deprecated function gets easier.
Signed-off-by: Peter Osterlund <petero2@telia.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/net/arcnet/com90io.c')
-rw-r--r-- | drivers/net/arcnet/com90io.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/arcnet/com90io.c b/drivers/net/arcnet/com90io.c index 52c77cbe8c62..1f0302735416 100644 --- a/drivers/net/arcnet/com90io.c +++ b/drivers/net/arcnet/com90io.c | |||
@@ -160,7 +160,7 @@ static int __init com90io_probe(struct net_device *dev) | |||
160 | return -ENODEV; | 160 | return -ENODEV; |
161 | } | 161 | } |
162 | if (!request_region(ioaddr, ARCNET_TOTAL_SIZE, "com90io probe")) { | 162 | if (!request_region(ioaddr, ARCNET_TOTAL_SIZE, "com90io probe")) { |
163 | BUGMSG(D_INIT_REASONS, "IO check_region %x-%x failed.\n", | 163 | BUGMSG(D_INIT_REASONS, "IO request_region %x-%x failed.\n", |
164 | ioaddr, ioaddr + ARCNET_TOTAL_SIZE - 1); | 164 | ioaddr, ioaddr + ARCNET_TOTAL_SIZE - 1); |
165 | return -ENXIO; | 165 | return -ENXIO; |
166 | } | 166 | } |
@@ -242,7 +242,7 @@ static int __init com90io_found(struct net_device *dev) | |||
242 | BUGMSG(D_NORMAL, "Can't get IRQ %d!\n", dev->irq); | 242 | BUGMSG(D_NORMAL, "Can't get IRQ %d!\n", dev->irq); |
243 | return -ENODEV; | 243 | return -ENODEV; |
244 | } | 244 | } |
245 | /* Reserve the I/O region - guaranteed to work by check_region */ | 245 | /* Reserve the I/O region */ |
246 | if (!request_region(dev->base_addr, ARCNET_TOTAL_SIZE, "arcnet (COM90xx-IO)")) { | 246 | if (!request_region(dev->base_addr, ARCNET_TOTAL_SIZE, "arcnet (COM90xx-IO)")) { |
247 | free_irq(dev->irq, dev); | 247 | free_irq(dev->irq, dev); |
248 | return -EBUSY; | 248 | return -EBUSY; |