mirror of
https://github.com/joel16/android_kernel_sony_msm8994.git
synced 2024-11-24 12:40:24 +00:00
[SCSI] small cleanups
This patch contains the following cleanups: - make needlessly global functions static - every file should #include the headers containing the prototypes for it's global functions Signed-off-by: Adrian Bunk <bunk@stusta.de> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
This commit is contained in:
parent
9d720d82dc
commit
44818efbad
@ -9,6 +9,7 @@
|
||||
#include <linux/sysctl.h>
|
||||
|
||||
#include "scsi_logging.h"
|
||||
#include "scsi_priv.h"
|
||||
|
||||
|
||||
static ctl_table scsi_table[] = {
|
||||
|
@ -16,6 +16,7 @@
|
||||
#include <scsi/scsi_host.h>
|
||||
#include <scsi/scsi_tcq.h>
|
||||
#include <scsi/scsi_transport.h>
|
||||
#include <scsi/scsi_driver.h>
|
||||
|
||||
#include "scsi_priv.h"
|
||||
#include "scsi_logging.h"
|
||||
@ -803,7 +804,7 @@ void scsi_remove_device(struct scsi_device *sdev)
|
||||
}
|
||||
EXPORT_SYMBOL(scsi_remove_device);
|
||||
|
||||
void __scsi_remove_target(struct scsi_target *starget)
|
||||
static void __scsi_remove_target(struct scsi_target *starget)
|
||||
{
|
||||
struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
|
||||
unsigned long flags;
|
||||
|
@ -2358,7 +2358,7 @@ fc_rport_final_delete(struct work_struct *work)
|
||||
* Notes:
|
||||
* This routine assumes no locks are held on entry.
|
||||
**/
|
||||
struct fc_rport *
|
||||
static struct fc_rport *
|
||||
fc_rport_create(struct Scsi_Host *shost, int channel,
|
||||
struct fc_rport_identifiers *ids)
|
||||
{
|
||||
|
@ -175,7 +175,7 @@ static void scsi_cd_put(struct scsi_cd *cd)
|
||||
* an inode for that to work, and we do not always have one.
|
||||
*/
|
||||
|
||||
int sr_media_change(struct cdrom_device_info *cdi, int slot)
|
||||
static int sr_media_change(struct cdrom_device_info *cdi, int slot)
|
||||
{
|
||||
struct scsi_cd *cd = cdi->handle;
|
||||
int retval;
|
||||
|
Loading…
Reference in New Issue
Block a user