From: Adrian Bunk This patch contains the following cleanups: - make a needlessly global function static - remove the unneeded global function irport_probe Signed-off-by: Adrian Bunk Cc: Jeff Garzik Signed-off-by: Andrew Morton --- drivers/net/irda/irport.c | 15 +-------------- 1 files changed, 1 insertion(+), 14 deletions(-) diff -puN drivers/net/irda/irport.c~drivers-net-irda-irportc-cleanups drivers/net/irda/irport.c --- devel/drivers/net/irda/irport.c~drivers-net-irda-irportc-cleanups 2005-11-05 02:24:20.000000000 -0800 +++ devel-akpm/drivers/net/irda/irport.c 2005-11-05 02:24:20.000000000 -0800 @@ -285,19 +285,6 @@ static void irport_start(struct irport_c } /* - * Function irport_probe (void) - * - * Start IO port - * - */ -int irport_probe(int iobase) -{ - IRDA_DEBUG(4, "%s(), iobase=%#x\n", __FUNCTION__, iobase); - - return 0; -} - -/* * Function irport_get_fcr (speed) * * Compute value of fcr @@ -382,7 +369,7 @@ static void irport_change_speed(void *pr * we cannot use schedule_timeout() when we are in interrupt context * */ -int __irport_change_speed(struct irda_task *task) +static int __irport_change_speed(struct irda_task *task) { struct irport_cb *self; __u32 speed = (__u32) task->param; _