diff options
author | Colin Ian King <colin.king@canonical.com> | 2021-04-16 11:47:13 +0200 |
---|---|---|
committer | Martin K. Petersen <martin.petersen@oracle.com> | 2021-05-10 19:24:05 +0200 |
commit | 1b3babe200498bfd4426057f07a935b5347077ab (patch) | |
tree | 381bc6652260b5b4631e361046f096f3ce4ea6d7 /drivers | |
parent | scsi: message: fusion: Documentation cleanup (diff) | |
download | linux-1b3babe200498bfd4426057f07a935b5347077ab.tar.xz linux-1b3babe200498bfd4426057f07a935b5347077ab.zip |
scsi: 3w-9xxx: Move * operator to clean up code style warning
Checkpatch is warning that char* text sould be char *text to match the
coding style. Fix this.
Link: https://lore.kernel.org/r/20210416094713.2033212-1-colin.king@canonical.com
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/scsi/3w-9xxx.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/3w-9xxx.h b/drivers/scsi/3w-9xxx.h index d3f479324527..30109ae96ce5 100644 --- a/drivers/scsi/3w-9xxx.h +++ b/drivers/scsi/3w-9xxx.h @@ -50,7 +50,7 @@ /* AEN string type */ typedef struct TAG_twa_message_type { unsigned int code; - char* text; + char *text; } twa_message_type; /* AEN strings */ |