All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] scsi/fc: fix function declarations to be ANSI-compliant
@ 2009-04-28  4:49 Randy Dunlap
  0 siblings, 0 replies; only message in thread
From: Randy Dunlap @ 2009-04-28  4:49 UTC (permalink / raw)
  To: scsi, James Bottomley

From: Randy Dunlap <randy.dunlap@oracle.com>

Fix scsi/fc function declarations:

drivers/scsi/fcoe/fcoe.c:1356:28: warning: non-ANSI function declaration of function 'fcoe_dev_setup'
drivers/scsi/libfc/fc_rport.c:1293:20: warning: non-ANSI function declaration of function 'fc_setup_rport'
drivers/scsi/libfc/fc_rport.c:1302:23: warning: non-ANSI function declaration of function 'fc_destroy_rport'

Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
---
 drivers/scsi/fcoe/fcoe.c      |    2 +-
 drivers/scsi/libfc/fc_rport.c |    4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

--- mmotm-2009-0427-1545.orig/drivers/scsi/fcoe/fcoe.c
+++ mmotm-2009-0427-1545/drivers/scsi/fcoe/fcoe.c
@@ -1353,7 +1353,7 @@ out:
 /**
  * fcoe_dev_setup() - setup link change notification interface
  */
-static void fcoe_dev_setup()
+static void fcoe_dev_setup(void)
 {
 	/*
 	 * here setup a interface specific wd time to
--- mmotm-2009-0427-1545.orig/drivers/scsi/libfc/fc_rport.c
+++ mmotm-2009-0427-1545/drivers/scsi/libfc/fc_rport.c
@@ -1290,7 +1290,7 @@ int fc_rport_init(struct fc_lport *lport
 }
 EXPORT_SYMBOL(fc_rport_init);
 
-int fc_setup_rport()
+int fc_setup_rport(void)
 {
 	rport_event_queue = create_singlethread_workqueue("fc_rport_eq");
 	if (!rport_event_queue)
@@ -1299,7 +1299,7 @@ int fc_setup_rport()
 }
 EXPORT_SYMBOL(fc_setup_rport);
 
-void fc_destroy_rport()
+void fc_destroy_rport(void)
 {
 	destroy_workqueue(rport_event_queue);
 }

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2009-04-28  4:48 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-04-28  4:49 [PATCH] scsi/fc: fix function declarations to be ANSI-compliant Randy Dunlap

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.