diff options
author | Chunyan Zhang <zhang.chunyan@linaro.org> | 2015-01-08 05:01:27 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-01-12 03:39:40 +0100 |
commit | 270d73c1c32c71e215f1c64e70be82063ec65005 (patch) | |
tree | 17bd55501e42771a1f947481a4d208e3b5c6fd0f /drivers/net/irda/au1k_ir.c | |
parent | Merge branch 'sti_drivers' (diff) | |
download | linux-270d73c1c32c71e215f1c64e70be82063ec65005.tar.xz linux-270d73c1c32c71e215f1c64e70be82063ec65005.zip |
irda: Removed all unused timeval variables
In the file au1k_ir.c & via-ircc.h, there were two unused definitions of the
timeval type members, this commit therefore removes this unneeded code.
In other three files, the same problem is the rx_time member is only ever
written, never read, so removed it entirely.
Signed-off-by: Chunyan Zhang <zhang.chunyan@linaro.org>
Reviewed-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/irda/au1k_ir.c')
-rw-r--r-- | drivers/net/irda/au1k_ir.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/net/irda/au1k_ir.c b/drivers/net/irda/au1k_ir.c index e151205281e2..44e4f386a5dc 100644 --- a/drivers/net/irda/au1k_ir.c +++ b/drivers/net/irda/au1k_ir.c @@ -24,7 +24,6 @@ #include <linux/interrupt.h> #include <linux/platform_device.h> #include <linux/slab.h> -#include <linux/time.h> #include <linux/types.h> #include <linux/ioport.h> @@ -163,8 +162,6 @@ struct au1k_private { iobuff_t rx_buff; struct net_device *netdev; - struct timeval stamp; - struct timeval now; struct qos_info qos; struct irlap_cb *irlap; |