From: Konrad Zapalowicz Date: Wed, 6 Aug 2014 19:01:26 +0000 (+0200) Subject: staging: dgnc: Remove 'volatile' modifier where it is not needed X-Git-Tag: v3.18-rc1~130^2~1326 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=e9b69997e74a88b388a6272a81e5133688683705;p=karo-tx-linux.git staging: dgnc: Remove 'volatile' modifier where it is not needed This commit fixes the checkpath warning about misused 'volatile' modifier. In this case the 'volatile' was not needed as it was used for regular automatic variable. Thos commit removes the 'volatile'. Signed-off-by: Konrad Zapalowicz Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/dgnc/dgnc_neo.c b/drivers/staging/dgnc/dgnc_neo.c index b4198e0d5f0c..86a1cd79daee 100644 --- a/drivers/staging/dgnc/dgnc_neo.c +++ b/drivers/staging/dgnc/dgnc_neo.c @@ -1640,7 +1640,7 @@ static void neo_copy_data_from_queue_to_uart(struct channel_t *ch) static void neo_parse_modem(struct channel_t *ch, uchar signals) { - volatile uchar msignals = signals; + uchar msignals = signals; if (!ch || ch->magic != DGNC_CHANNEL_MAGIC) return;