From: Colin Ian King Date: Mon, 2 Jul 2018 08:21:16 +0000 (+0100) Subject: hpet: remove redundant pointer hpet X-Git-Tag: v4.19-rc1~100^2~181 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=9f10ee32bfaf10dc4d2b0ccd149726eda8df3d57;p=thirdparty%2Fkernel%2Flinux.git hpet: remove redundant pointer hpet Pointer hpet is being assigned but is never used hence it is redundant and can be removed. Cleans up clang warning: warning: variable 'hpet' set but not used [-Wunused-but-set-variable] Signed-off-by: Colin Ian King Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/char/hpet.c b/drivers/char/hpet.c index be426eb2a3535..4a22b4b41aefd 100644 --- a/drivers/char/hpet.c +++ b/drivers/char/hpet.c @@ -579,7 +579,6 @@ hpet_ioctl_common(struct hpet_dev *devp, unsigned int cmd, unsigned long arg, struct hpet_info *info) { struct hpet_timer __iomem *timer; - struct hpet __iomem *hpet; struct hpets *hpetp; int err; unsigned long v; @@ -591,7 +590,6 @@ hpet_ioctl_common(struct hpet_dev *devp, unsigned int cmd, unsigned long arg, case HPET_DPI: case HPET_IRQFREQ: timer = devp->hd_timer; - hpet = devp->hd_hpet; hpetp = devp->hd_hpets; break; case HPET_IE_ON: