aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/char/hpet.c
diff options
context:
space:
mode:
authorCorentin Labbe <clabbe@baylibre.com>2022-01-25 14:03:52 +0000
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2022-02-04 16:45:39 +0100
commitb86f32951d173b43d1db8de883473fc53dc3c772 (patch)
treeb42232188e6c0b747191cf3f68305fb74377b40a /drivers/char/hpet.c
parenthpet: fix style issue about braces and alignment (diff)
downloadlinux-dev-b86f32951d173b43d1db8de883473fc53dc3c772.tar.xz
linux-dev-b86f32951d173b43d1db8de883473fc53dc3c772.zip
hpet: remove unused writeq/readq function definitions
On all arch using hpet, only i386 miss writeq/readq. Instead of rewriting them, use linux/io-64-nonatomic-lo-hi.h which already have them. Signed-off-by: Corentin Labbe <clabbe@baylibre.com> Link: https://lore.kernel.org/r/20220125140352.4085290-1-clabbe@baylibre.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/char/hpet.c')
-rw-r--r--drivers/char/hpet.c17
1 files changed, 1 insertions, 16 deletions
diff --git a/drivers/char/hpet.c b/drivers/char/hpet.c
index a8d11251f4b7..ee71376f174b 100644
--- a/drivers/char/hpet.c
+++ b/drivers/char/hpet.c
@@ -16,6 +16,7 @@
#include <linux/ioport.h>
#include <linux/fcntl.h>
#include <linux/init.h>
+#include <linux/io-64-nonatomic-lo-hi.h>
#include <linux/poll.h>
#include <linux/mm.h>
#include <linux/proc_fs.h>
@@ -120,22 +121,6 @@ static struct hpets *hpets;
#define HPET_PERIODIC 0x0004
#define HPET_SHARED_IRQ 0x0008
-
-#ifndef readq
-static inline unsigned long long readq(void __iomem *addr)
-{
- return readl(addr) | (((unsigned long long)readl(addr + 4)) << 32LL);
-}
-#endif
-
-#ifndef writeq
-static inline void writeq(unsigned long long v, void __iomem *addr)
-{
- writel(v & 0xffffffff, addr);
- writel(v >> 32, addr + 4);
-}
-#endif
-
static irqreturn_t hpet_interrupt(int irq, void *data)
{
struct hpet_dev *devp;