From: andrea merello Date: Tue, 21 Jan 2014 19:16:43 +0000 (+0100) Subject: rtl818x: change misleading names for few register bit definitions X-Git-Tag: v3.15-rc1~113^2~289^2^2~98 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6f7343d4c4682b52943993decc8678084a35514d;p=pandora-kernel.git rtl818x: change misleading names for few register bit definitions In rtl8180/rtl8187 drivers, few register bit definitions have names of form FOOBAR_SHIFT, suggesting they should be used as shift offset, for example reg |= (1 << ENABLE_FOO_SHIFT). However they are actually defined as (1 << x) and thus they are used (correctly) like reg |= ENABLE_FOO_SHIFT; This patch kills the misleading _SHIFT suffix. Signed-off-by: andrea merello Signed-off-by: John W. Linville --- Reading git-diff-tree failed