scsi: scsi_debug: Fix pointer styling issues
Pointer styling issues exposed by checkpatch.pl in scsi_debug.c: ERROR: "foo * bar" should be "foo *bar" Fixed 37 total errors reported. [mkp: fixed typo noticed by Doug] Signed-off-by: John Pittman <jpittman@redhat.com> Acked-by: Douglas Gilbert <dgilbert@interlog.com> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
This commit is contained in:
Родитель
9b91fd34b4
Коммит
91d4c7520d
|
@ -1156,8 +1156,8 @@ static int inquiry_vpd_84(unsigned char *arr)
|
|||
static int inquiry_vpd_85(unsigned char *arr)
|
||||
{
|
||||
int num = 0;
|
||||
const char * na1 = "https://www.kernel.org/config";
|
||||
const char * na2 = "http://www.kernel.org/log";
|
||||
const char *na1 = "https://www.kernel.org/config";
|
||||
const char *na2 = "http://www.kernel.org/log";
|
||||
int plen, olen;
|
||||
|
||||
arr[num++] = 0x1; /* lu, storage config */
|
||||
|
@ -1373,7 +1373,7 @@ static int inquiry_vpd_b2(unsigned char *arr)
|
|||
static int resp_inquiry(struct scsi_cmnd *scp, struct sdebug_dev_info *devip)
|
||||
{
|
||||
unsigned char pq_pdt;
|
||||
unsigned char * arr;
|
||||
unsigned char *arr;
|
||||
unsigned char *cmd = scp->cmnd;
|
||||
int alloc_len, n, ret;
|
||||
bool have_wlun, is_disk;
|
||||
|
@ -1524,10 +1524,10 @@ static int resp_inquiry(struct scsi_cmnd *scp, struct sdebug_dev_info *devip)
|
|||
static unsigned char iec_m_pg[] = {0x1c, 0xa, 0x08, 0, 0, 0, 0, 0,
|
||||
0, 0, 0x0, 0x0};
|
||||
|
||||
static int resp_requests(struct scsi_cmnd * scp,
|
||||
struct sdebug_dev_info * devip)
|
||||
static int resp_requests(struct scsi_cmnd *scp,
|
||||
struct sdebug_dev_info *devip)
|
||||
{
|
||||
unsigned char * sbuff;
|
||||
unsigned char *sbuff;
|
||||
unsigned char *cmd = scp->cmnd;
|
||||
unsigned char arr[SCSI_SENSE_BUFFERSIZE];
|
||||
bool dsense;
|
||||
|
@ -1585,8 +1585,8 @@ static int resp_requests(struct scsi_cmnd * scp,
|
|||
return fill_from_dev_buffer(scp, arr, len);
|
||||
}
|
||||
|
||||
static int resp_start_stop(struct scsi_cmnd * scp,
|
||||
struct sdebug_dev_info * devip)
|
||||
static int resp_start_stop(struct scsi_cmnd *scp,
|
||||
struct sdebug_dev_info *devip)
|
||||
{
|
||||
unsigned char *cmd = scp->cmnd;
|
||||
int power_cond, stop;
|
||||
|
@ -1613,8 +1613,8 @@ static sector_t get_sdebug_capacity(void)
|
|||
}
|
||||
|
||||
#define SDEBUG_READCAP_ARR_SZ 8
|
||||
static int resp_readcap(struct scsi_cmnd * scp,
|
||||
struct sdebug_dev_info * devip)
|
||||
static int resp_readcap(struct scsi_cmnd *scp,
|
||||
struct sdebug_dev_info *devip)
|
||||
{
|
||||
unsigned char arr[SDEBUG_READCAP_ARR_SZ];
|
||||
unsigned int capac;
|
||||
|
@ -1632,8 +1632,8 @@ static int resp_readcap(struct scsi_cmnd * scp,
|
|||
}
|
||||
|
||||
#define SDEBUG_READCAP16_ARR_SZ 32
|
||||
static int resp_readcap16(struct scsi_cmnd * scp,
|
||||
struct sdebug_dev_info * devip)
|
||||
static int resp_readcap16(struct scsi_cmnd *scp,
|
||||
struct sdebug_dev_info *devip)
|
||||
{
|
||||
unsigned char *cmd = scp->cmnd;
|
||||
unsigned char arr[SDEBUG_READCAP16_ARR_SZ];
|
||||
|
@ -1671,11 +1671,11 @@ static int resp_readcap16(struct scsi_cmnd * scp,
|
|||
|
||||
#define SDEBUG_MAX_TGTPGS_ARR_SZ 1412
|
||||
|
||||
static int resp_report_tgtpgs(struct scsi_cmnd * scp,
|
||||
struct sdebug_dev_info * devip)
|
||||
static int resp_report_tgtpgs(struct scsi_cmnd *scp,
|
||||
struct sdebug_dev_info *devip)
|
||||
{
|
||||
unsigned char *cmd = scp->cmnd;
|
||||
unsigned char * arr;
|
||||
unsigned char *arr;
|
||||
int host_no = devip->sdbg_host->shost->host_no;
|
||||
int n, ret, alen, rlen;
|
||||
int port_group_a, port_group_b, port_a, port_b;
|
||||
|
@ -1927,7 +1927,7 @@ static int resp_rsup_tmfs(struct scsi_cmnd *scp,
|
|||
|
||||
/* <<Following mode page info copied from ST318451LW>> */
|
||||
|
||||
static int resp_err_recov_pg(unsigned char * p, int pcontrol, int target)
|
||||
static int resp_err_recov_pg(unsigned char *p, int pcontrol, int target)
|
||||
{ /* Read-Write Error Recovery page for mode_sense */
|
||||
unsigned char err_recov_pg[] = {0x1, 0xa, 0xc0, 11, 240, 0, 0, 0,
|
||||
5, 0, 0xff, 0xff};
|
||||
|
@ -1938,7 +1938,7 @@ static int resp_err_recov_pg(unsigned char * p, int pcontrol, int target)
|
|||
return sizeof(err_recov_pg);
|
||||
}
|
||||
|
||||
static int resp_disconnect_pg(unsigned char * p, int pcontrol, int target)
|
||||
static int resp_disconnect_pg(unsigned char *p, int pcontrol, int target)
|
||||
{ /* Disconnect-Reconnect page for mode_sense */
|
||||
unsigned char disconnect_pg[] = {0x2, 0xe, 128, 128, 0, 10, 0, 0,
|
||||
0, 0, 0, 0, 0, 0, 0, 0};
|
||||
|
@ -1949,7 +1949,7 @@ static int resp_disconnect_pg(unsigned char * p, int pcontrol, int target)
|
|||
return sizeof(disconnect_pg);
|
||||
}
|
||||
|
||||
static int resp_format_pg(unsigned char * p, int pcontrol, int target)
|
||||
static int resp_format_pg(unsigned char *p, int pcontrol, int target)
|
||||
{ /* Format device page for mode_sense */
|
||||
unsigned char format_pg[] = {0x3, 0x16, 0, 0, 0, 0, 0, 0,
|
||||
0, 0, 0, 0, 0, 0, 0, 0,
|
||||
|
@ -1969,7 +1969,7 @@ static unsigned char caching_pg[] = {0x8, 18, 0x14, 0, 0xff, 0xff, 0, 0,
|
|||
0xff, 0xff, 0xff, 0xff, 0x80, 0x14, 0, 0,
|
||||
0, 0, 0, 0};
|
||||
|
||||
static int resp_caching_pg(unsigned char * p, int pcontrol, int target)
|
||||
static int resp_caching_pg(unsigned char *p, int pcontrol, int target)
|
||||
{ /* Caching page for mode_sense */
|
||||
unsigned char ch_caching_pg[] = {/* 0x8, 18, */ 0x4, 0, 0, 0, 0, 0,
|
||||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
|
||||
|
@ -1989,7 +1989,7 @@ static int resp_caching_pg(unsigned char * p, int pcontrol, int target)
|
|||
static unsigned char ctrl_m_pg[] = {0xa, 10, 2, 0, 0, 0, 0, 0,
|
||||
0, 0, 0x2, 0x4b};
|
||||
|
||||
static int resp_ctrl_m_pg(unsigned char * p, int pcontrol, int target)
|
||||
static int resp_ctrl_m_pg(unsigned char *p, int pcontrol, int target)
|
||||
{ /* Control mode page for mode_sense */
|
||||
unsigned char ch_ctrl_m_pg[] = {/* 0xa, 10, */ 0x6, 0, 0, 0, 0, 0,
|
||||
0, 0, 0, 0};
|
||||
|
@ -2013,7 +2013,7 @@ static int resp_ctrl_m_pg(unsigned char * p, int pcontrol, int target)
|
|||
}
|
||||
|
||||
|
||||
static int resp_iec_m_pg(unsigned char * p, int pcontrol, int target)
|
||||
static int resp_iec_m_pg(unsigned char *p, int pcontrol, int target)
|
||||
{ /* Informational Exceptions control mode page for mode_sense */
|
||||
unsigned char ch_iec_m_pg[] = {/* 0x1c, 0xa, */ 0x4, 0xf, 0, 0, 0, 0,
|
||||
0, 0, 0x0, 0x0};
|
||||
|
@ -2028,7 +2028,7 @@ static int resp_iec_m_pg(unsigned char * p, int pcontrol, int target)
|
|||
return sizeof(iec_m_pg);
|
||||
}
|
||||
|
||||
static int resp_sas_sf_m_pg(unsigned char * p, int pcontrol, int target)
|
||||
static int resp_sas_sf_m_pg(unsigned char *p, int pcontrol, int target)
|
||||
{ /* SAS SSP mode page - short format for mode_sense */
|
||||
unsigned char sas_sf_m_pg[] = {0x19, 0x6,
|
||||
0x6, 0x0, 0x7, 0xd0, 0x0, 0x0};
|
||||
|
@ -2040,7 +2040,7 @@ static int resp_sas_sf_m_pg(unsigned char * p, int pcontrol, int target)
|
|||
}
|
||||
|
||||
|
||||
static int resp_sas_pcd_m_spg(unsigned char * p, int pcontrol, int target,
|
||||
static int resp_sas_pcd_m_spg(unsigned char *p, int pcontrol, int target,
|
||||
int target_dev_id)
|
||||
{ /* SAS phy control and discover mode page for mode_sense */
|
||||
unsigned char sas_pcd_m_pg[] = {0x59, 0x1, 0, 0x64, 0, 0x6, 0, 2,
|
||||
|
@ -2073,7 +2073,7 @@ static int resp_sas_pcd_m_spg(unsigned char * p, int pcontrol, int target,
|
|||
return sizeof(sas_pcd_m_pg);
|
||||
}
|
||||
|
||||
static int resp_sas_sha_m_spg(unsigned char * p, int pcontrol)
|
||||
static int resp_sas_sha_m_spg(unsigned char *p, int pcontrol)
|
||||
{ /* SAS SSP shared protocol specific port mode subpage */
|
||||
unsigned char sas_sha_m_pg[] = {0x59, 0x2, 0, 0xc, 0, 0x6, 0x10, 0,
|
||||
0, 0, 0, 0, 0, 0, 0, 0,
|
||||
|
@ -2094,7 +2094,7 @@ static int resp_mode_sense(struct scsi_cmnd *scp,
|
|||
unsigned char dev_spec;
|
||||
int alloc_len, offset, len, target_dev_id;
|
||||
int target = scp->device->id;
|
||||
unsigned char * ap;
|
||||
unsigned char *ap;
|
||||
unsigned char arr[SDEBUG_MAX_MSENSE_SZ];
|
||||
unsigned char *cmd = scp->cmnd;
|
||||
bool dbd, llbaa, msense_6, is_disk, bad_pcode;
|
||||
|
@ -2325,7 +2325,7 @@ set_mode_changed_ua:
|
|||
return 0;
|
||||
}
|
||||
|
||||
static int resp_temp_l_pg(unsigned char * arr)
|
||||
static int resp_temp_l_pg(unsigned char *arr)
|
||||
{
|
||||
unsigned char temp_l_pg[] = {0x0, 0x0, 0x3, 0x2, 0x0, 38,
|
||||
0x0, 0x1, 0x3, 0x2, 0x0, 65,
|
||||
|
@ -2335,7 +2335,7 @@ static int resp_temp_l_pg(unsigned char * arr)
|
|||
return sizeof(temp_l_pg);
|
||||
}
|
||||
|
||||
static int resp_ie_l_pg(unsigned char * arr)
|
||||
static int resp_ie_l_pg(unsigned char *arr)
|
||||
{
|
||||
unsigned char ie_l_pg[] = {0x0, 0x0, 0x3, 0x3, 0x0, 0x0, 38,
|
||||
};
|
||||
|
@ -4060,7 +4060,7 @@ static int scsi_debug_abort(struct scsi_cmnd *SCpnt)
|
|||
return SUCCESS;
|
||||
}
|
||||
|
||||
static int scsi_debug_device_reset(struct scsi_cmnd * SCpnt)
|
||||
static int scsi_debug_device_reset(struct scsi_cmnd *SCpnt)
|
||||
{
|
||||
++num_dev_resets;
|
||||
if (SCpnt && SCpnt->device) {
|
||||
|
@ -4112,7 +4112,7 @@ lie:
|
|||
return SUCCESS;
|
||||
}
|
||||
|
||||
static int scsi_debug_bus_reset(struct scsi_cmnd * SCpnt)
|
||||
static int scsi_debug_bus_reset(struct scsi_cmnd *SCpnt)
|
||||
{
|
||||
struct sdebug_host_info *sdbg_host;
|
||||
struct sdebug_dev_info *devip;
|
||||
|
@ -4145,9 +4145,9 @@ lie:
|
|||
return SUCCESS;
|
||||
}
|
||||
|
||||
static int scsi_debug_host_reset(struct scsi_cmnd * SCpnt)
|
||||
static int scsi_debug_host_reset(struct scsi_cmnd *SCpnt)
|
||||
{
|
||||
struct sdebug_host_info * sdbg_host;
|
||||
struct sdebug_host_info *sdbg_host;
|
||||
struct sdebug_dev_info *devip;
|
||||
int k = 0;
|
||||
|
||||
|
@ -4173,7 +4173,7 @@ static int scsi_debug_host_reset(struct scsi_cmnd * SCpnt)
|
|||
static void __init sdebug_build_parts(unsigned char *ramp,
|
||||
unsigned long store_size)
|
||||
{
|
||||
struct partition * pp;
|
||||
struct partition *pp;
|
||||
int starts[SDEBUG_MAX_PARTS + 2];
|
||||
int sectors_per_part, num_sectors, k;
|
||||
int heads_by_sects, start_sec, end_sec;
|
||||
|
@ -4524,7 +4524,7 @@ MODULE_PARM_DESC(write_same_length, "Maximum blocks per WRITE SAME cmd (def=0xff
|
|||
#define SDEBUG_INFO_LEN 256
|
||||
static char sdebug_info[SDEBUG_INFO_LEN];
|
||||
|
||||
static const char * scsi_debug_info(struct Scsi_Host * shp)
|
||||
static const char *scsi_debug_info(struct Scsi_Host *shp)
|
||||
{
|
||||
int k;
|
||||
|
||||
|
@ -5447,7 +5447,7 @@ static void __exit scsi_debug_exit(void)
|
|||
device_initcall(scsi_debug_init);
|
||||
module_exit(scsi_debug_exit);
|
||||
|
||||
static void sdebug_release_adapter(struct device * dev)
|
||||
static void sdebug_release_adapter(struct device *dev)
|
||||
{
|
||||
struct sdebug_host_info *sdbg_host;
|
||||
|
||||
|
@ -5749,7 +5749,7 @@ static struct scsi_host_template sdebug_driver_template = {
|
|||
.track_queue_depth = 1,
|
||||
};
|
||||
|
||||
static int sdebug_driver_probe(struct device * dev)
|
||||
static int sdebug_driver_probe(struct device *dev)
|
||||
{
|
||||
int error = 0;
|
||||
struct sdebug_host_info *sdbg_host;
|
||||
|
@ -5846,7 +5846,7 @@ static int sdebug_driver_probe(struct device * dev)
|
|||
return error;
|
||||
}
|
||||
|
||||
static int sdebug_driver_remove(struct device * dev)
|
||||
static int sdebug_driver_remove(struct device *dev)
|
||||
{
|
||||
struct sdebug_host_info *sdbg_host;
|
||||
struct sdebug_dev_info *sdbg_devinfo, *tmp;
|
||||
|
|
Загрузка…
Ссылка в новой задаче