From: Adrian Bunk Date: Tue, 10 Jan 2006 04:54:49 +0000 (-0800) Subject: [PATCH] kernel/resource.c: __check_region(): remove pointless __deprecated X-Git-Tag: v2.6.16-rc1~478 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=d974837ae076101d33a59eefc6bfef923eaa0e32;p=linux-block.git [PATCH] kernel/resource.c: __check_region(): remove pointless __deprecated If a __deprecated is desired it should go to the prototype in the header (where it currently isn't). But at this place it's pointless. Signed-off-by: Adrian Bunk Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/kernel/resource.c b/kernel/resource.c index 92285d822de6..e3080fcc66a3 100644 --- a/kernel/resource.c +++ b/kernel/resource.c @@ -464,7 +464,7 @@ struct resource * __request_region(struct resource *parent, unsigned long start, EXPORT_SYMBOL(__request_region); -int __deprecated __check_region(struct resource *parent, unsigned long start, unsigned long n) +int __check_region(struct resource *parent, unsigned long start, unsigned long n) { struct resource * res;