]> git.karo-electronics.de Git - linux-beck.git/commitdiff
ARM: imx: remove last call to cpu_is_mx5*
authorArnd Bergmann <arnd@arndb.de>
Fri, 24 Jun 2016 10:50:00 +0000 (12:50 +0200)
committerShawn Guo <shawnguo@kernel.org>
Tue, 28 Jun 2016 02:26:42 +0000 (10:26 +0800)
The check for cpu_is_mx51/cpu_is_mx53() in mx51_revision()/mx53_revision()
is just a safety precaution, but there are only two callers of this
are using it only on the correct CPUs, and none of the other respective
functions have this extra check.

Removing these lets us kill off the cpu_is_* functions.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Shawn Guo <shawnguo@kernel.org>
arch/arm/mach-imx/cpu-imx5.c

index 3403bac94a31af62ffd3ea67589e3cb96d036d48..4f2d1c772f8559d789b71ca1f83568148153e466 100644 (file)
@@ -60,13 +60,9 @@ static int get_mx51_srev(void)
 /*
  * Returns:
  *     the silicon revision of the cpu
- *     -EINVAL - not a mx51
  */
 int mx51_revision(void)
 {
-       if (!cpu_is_mx51())
-               return -EINVAL;
-
        if (mx5_cpu_rev == -1)
                mx5_cpu_rev = get_mx51_srev();
 
@@ -112,13 +108,9 @@ static int get_mx53_srev(void)
 /*
  * Returns:
  *     the silicon revision of the cpu
- *     -EINVAL - not a mx53
  */
 int mx53_revision(void)
 {
-       if (!cpu_is_mx53())
-               return -EINVAL;
-
        if (mx5_cpu_rev == -1)
                mx5_cpu_rev = get_mx53_srev();