[POWERPC] Don't expose clock vDSO functions when CPU has no timebase

We forgot to remove the clock_gettime, clock_getres and get_tbfreq vDSO
calls on CPUs that have no timebase such as 601 or 403 (old CPUs that have
different mechanisms and for which the vDSO code will not work properly).
This fixes it.

Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: Paul Mackerras <paulus@samba.org>

authored by Benjamin Herrenschmidt and committed by Paul Mackerras 7b5acbaa c0e7b4aa

+12
+12
arch/powerpc/kernel/vdso.c
··· 98 CPU_FTR_USE_TB, 0, 99 "__kernel_gettimeofday", NULL 100 }, 101 }; 102 103 /*
··· 98 CPU_FTR_USE_TB, 0, 99 "__kernel_gettimeofday", NULL 100 }, 101 + { 102 + CPU_FTR_USE_TB, 0, 103 + "__kernel_clock_gettime", NULL 104 + }, 105 + { 106 + CPU_FTR_USE_TB, 0, 107 + "__kernel_clock_getres", NULL 108 + }, 109 + { 110 + CPU_FTR_USE_TB, 0, 111 + "__kernel_get_tbfreq", NULL 112 + }, 113 }; 114 115 /*