diff options
author | Bart Van Assche <[email protected]> | 2024-06-03 10:23:10 -0700 |
---|---|---|
committer | Martin K. Petersen <[email protected]> | 2024-06-04 22:21:50 -0400 |
commit | 1dc98be418149feb79779af45abe0fe6243243e9 (patch) | |
tree | 2640dec61524ca4387e9840f7bb781f36f3f8303 | |
parent | 1414045725a00f40d52ffb4c866d6efeab02c37a (diff) |
scsi: eesox: Declare local function static
Signed-off-by: Bart Van Assche <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Reviewed-by: Johannes Thumshirn <[email protected]>
Signed-off-by: Martin K. Petersen <[email protected]>
-rw-r--r-- | drivers/scsi/arm/eesox.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/arm/eesox.c b/drivers/scsi/arm/eesox.c index b3ec7635bc72..99be9da8757f 100644 --- a/drivers/scsi/arm/eesox.c +++ b/drivers/scsi/arm/eesox.c @@ -381,7 +381,7 @@ eesoxscsi_dma_stop(struct Scsi_Host *host, struct scsi_pointer *SCp) * Params : host - driver host structure to return info for. * Returns : pointer to a static buffer containing null terminated string. */ -const char *eesoxscsi_info(struct Scsi_Host *host) +static const char *eesoxscsi_info(struct Scsi_Host *host) { struct eesoxscsi_info *info = (struct eesoxscsi_info *)host->hostdata; static char string[150]; |