From: Alexander Curtin Date: Thu, 24 Mar 2016 02:15:53 +0000 (-0400) Subject: staging: unisys: include: changed 'v' variable to 'state' X-Git-Tag: v4.7-rc1~90^2~645 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=85d83cd8c629e053e3aaec0a4dd6c798d46c109d;p=karo-tx-linux.git staging: unisys: include: changed 'v' variable to 'state' The argument for ULTRA_CHANNELCLI_STRING is supposed to be an integer representing the channel state. 'state' is a more descriptive variable name for this. Signed-off-by: Alexander Curtin Signed-off-by: David Kershner Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/unisys/include/channel.h b/drivers/staging/unisys/include/channel.h index b3c747b77dd0..db4e6b28755b 100644 --- a/drivers/staging/unisys/include/channel.h +++ b/drivers/staging/unisys/include/channel.h @@ -76,9 +76,9 @@ enum channel_clientstate { }; static inline const u8 * -ULTRA_CHANNELCLI_STRING(u32 v) +ULTRA_CHANNELCLI_STRING(u32 state) { - switch (v) { + switch (state) { case CHANNELCLI_DETACHED: return (const u8 *)("DETACHED"); case CHANNELCLI_DISABLED: