diff options
author | Michael Ellerman <mpe@ellerman.id.au> | 2018-03-14 09:38:47 -0700 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2018-03-14 09:40:06 -0700 |
commit | c9ab800167e1fc7b87a069b85b53a7eef414b4ae (patch) | |
tree | 303596dec7b08531272533a76f25b427d957b4bd /drivers/input | |
parent | 1c4bfce1c6045a7c5191949f6bd74662fb9bf02d (diff) | |
download | linux-stable-c9ab800167e1fc7b87a069b85b53a7eef414b4ae.tar.gz linux-stable-c9ab800167e1fc7b87a069b85b53a7eef414b4ae.tar.bz2 linux-stable-c9ab800167e1fc7b87a069b85b53a7eef414b4ae.zip |
Input: analog - use get_cycles() on PPC
The analog joystick driver spits a warning at us:
drivers/input/joystick/analog.c:176:2: warning: #warning Precise timer
not defined for this architecture.
PPC has get_cycles() so use that.
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Diffstat (limited to 'drivers/input')
-rw-r--r-- | drivers/input/joystick/analog.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/input/joystick/analog.c b/drivers/input/joystick/analog.c index c868a878c84f..a942c4ccd2af 100644 --- a/drivers/input/joystick/analog.c +++ b/drivers/input/joystick/analog.c @@ -163,7 +163,7 @@ static unsigned int get_time_pit(void) #define GET_TIME(x) do { x = (unsigned int)rdtsc(); } while (0) #define DELTA(x,y) ((y)-(x)) #define TIME_NAME "TSC" -#elif defined(__alpha__) || defined(CONFIG_MN10300) || defined(CONFIG_ARM) || defined(CONFIG_ARM64) || defined(CONFIG_RISCV) || defined(CONFIG_TILE) +#elif defined(__alpha__) || defined(CONFIG_MN10300) || defined(CONFIG_ARM) || defined(CONFIG_ARM64) || defined(CONFIG_PPC) || defined(CONFIG_RISCV) || defined(CONFIG_TILE) #define GET_TIME(x) do { x = get_cycles(); } while (0) #define DELTA(x,y) ((y)-(x)) #define TIME_NAME "get_cycles" |