diff options
author | Bart Van Assche <bvanassche@acm.org> | 2012-01-13 20:26:20 -0500 |
---|---|---|
committer | James Bottomley <JBottomley@Parallels.com> | 2012-01-16 03:45:48 -0500 |
commit | c6b21c93c1794113c68f3d43f321968191d87b1b (patch) | |
tree | 011ea47b03dc2628b1b210ab198e08343d3612a1 /drivers/scsi/libfc/fc_lport.c | |
parent | a762dce41cb5742a143f6aa2d80ee1aac7e1f5eb (diff) |
[SCSI] libfc: Declare local functions static
Avoid that sparse complains about missing declarations for local
functions by declaring these static or by adding an #include directive.
Add the __percpu annotation where it is missing.
Signed-off-by: Bart Van Assche <bvanassche@acm.org>
Reviewed-by: Yi Zou <yi.zou@intel.com>
Signed-off-by: Robert Love <robert.w.love@intel.com>
Signed-off-by: James Bottomley <JBottomley@Parallels.com>
Diffstat (limited to 'drivers/scsi/libfc/fc_lport.c')
-rw-r--r-- | drivers/scsi/libfc/fc_lport.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/scsi/libfc/fc_lport.c b/drivers/scsi/libfc/fc_lport.c index e77094a587ed..83750ebb527f 100644 --- a/drivers/scsi/libfc/fc_lport.c +++ b/drivers/scsi/libfc/fc_lport.c | |||
@@ -677,7 +677,8 @@ EXPORT_SYMBOL(fc_set_mfs); | |||
677 | * @lport: The local port receiving the event | 677 | * @lport: The local port receiving the event |
678 | * @event: The discovery event | 678 | * @event: The discovery event |
679 | */ | 679 | */ |
680 | void fc_lport_disc_callback(struct fc_lport *lport, enum fc_disc_event event) | 680 | static void fc_lport_disc_callback(struct fc_lport *lport, |
681 | enum fc_disc_event event) | ||
681 | { | 682 | { |
682 | switch (event) { | 683 | switch (event) { |
683 | case DISC_EV_SUCCESS: | 684 | case DISC_EV_SUCCESS: |
@@ -1568,7 +1569,7 @@ EXPORT_SYMBOL(fc_lport_flogi_resp); | |||
1568 | * Locking Note: The lport lock is expected to be held before calling | 1569 | * Locking Note: The lport lock is expected to be held before calling |
1569 | * this routine. | 1570 | * this routine. |
1570 | */ | 1571 | */ |
1571 | void fc_lport_enter_flogi(struct fc_lport *lport) | 1572 | static void fc_lport_enter_flogi(struct fc_lport *lport) |
1572 | { | 1573 | { |
1573 | struct fc_frame *fp; | 1574 | struct fc_frame *fp; |
1574 | 1575 | ||