diff options
| author | Benjamin Romer <benjamin.romer@unisys.com> | 2014-09-30 20:08:00 +0400 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-10-02 20:45:01 +0400 |
| commit | 059ec04b64470ed4801940d91b4f1343010f1ec3 (patch) | |
| tree | 53cc5c552bbda368cb82685eab93529c44faa93a | |
| parent | f796e84cc92f90bcf266f1418311518e21ebf2fc (diff) | |
| download | linux-059ec04b64470ed4801940d91b4f1343010f1ec3.tar.xz | |
staging: unisys: clean up CamelCase in DEDICATED_SWITCH() macro
Clean up CamelCase names:
pSwitch => s
Signed-off-by: Benjamin Romer <benjamin.romer@unisys.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
| -rw-r--r-- | drivers/staging/unisys/include/uisqueue.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/unisys/include/uisqueue.h b/drivers/staging/unisys/include/uisqueue.h index 5190eddf5f7f..b87e0aedd085 100644 --- a/drivers/staging/unisys/include/uisqueue.h +++ b/drivers/staging/unisys/include/uisqueue.h @@ -170,8 +170,8 @@ struct bus_info { * by IOVM; 0 otherwise... */ }; -#define DEDICATED_SWITCH(pSwitch) ((pSwitch->extPortCount == 1) && \ - (pSwitch->intPortCount == 1)) +#define DEDICATED_SWITCH(s) ((s->extPortCount == 1) && \ + (s->intPortCount == 1)) struct sn_list_entry { struct uisscsi_dest pdest; /* scsi bus, target, lun for |
