[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-Id: <1259141011-9567-1-git-send-email-u.kleine-koenig@pengutronix.de>
Date: Wed, 25 Nov 2009 10:23:31 +0100
From: Uwe Kleine-König
<u.kleine-koenig@...gutronix.de>
To: linux-kernel@...r.kernel.org
Cc: Roland Dreier <rolandd@...co.com>,
Yevgeny Petrilin <yevgenyp@...lanox.co.il>,
Yang Hongyang <yanghy@...fujitsu.com>,
Jack Morgenstein <jackm@....mellanox.co.il>,
Eli Cohen <eli@...lanox.co.il>,
Andrew Morton <akpm@...ux-foundation.org>,
netdev@...r.kernel.org, Franco Fichtner <franco@...tsummer.de>
Subject: [PATCH] don't wrap mlx4_remove_one in __devexit_p
The function mlx4_remove_one is defined in .text, so there is no need to
wrap it with __devexit_p.
While at it add a trailing comma to the section initializer.
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@...gutronix.de>
Cc: Roland Dreier <rolandd@...co.com>
Cc: Yevgeny Petrilin <yevgenyp@...lanox.co.il>
Cc: Yang Hongyang <yanghy@...fujitsu.com>
Cc: Jack Morgenstein <jackm@....mellanox.co.il>
Cc: Eli Cohen <eli@...lanox.co.il>
Cc: linux-kernel@...r.kernel.org
Cc: Andrew Morton <akpm@...ux-foundation.org>
Cc: netdev@...r.kernel.org
Cc: Franco Fichtner <franco@...tsummer.de>
---
drivers/net/mlx4/main.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/net/mlx4/main.c b/drivers/net/mlx4/main.c
index 291a505..acc2878 100644
--- a/drivers/net/mlx4/main.c
+++ b/drivers/net/mlx4/main.c
@@ -1293,7 +1293,7 @@ static struct pci_driver mlx4_driver = {
.name = DRV_NAME,
.id_table = mlx4_pci_table,
.probe = mlx4_init_one,
- .remove = __devexit_p(mlx4_remove_one)
+ .remove = mlx4_remove_one,
};
static int __init mlx4_verify_params(void)
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists