aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/w1
diff options
context:
space:
mode:
authorAndreas Kemnade <andreas@kemnade.info>2016-01-04 10:57:28 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2016-02-08 17:57:30 -0500
commit7b46a105dbb7b67ea1f2f63a0b3ec29ab64e1bd3 (patch)
treeb746524e0004a706aa278679611fc744ad24e00a /drivers/w1
parent6908b45eafc480e9da8196f987b1d0f6c887a5d7 (diff)
omap_hdq: fix usecount handling
hdq_usecount was set to zero after a successful read, so omap_hdq_put could not properly free resources which leads e.g. to increasing usecounts in lsmod output Signed-off-by: Andreas Kemnade <andreas@kemnade.info> Acked-by: Evgeniy Polyakov <zbr@ioremap.net> Reviewed-by: Vignesh R <vigneshr@ti.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/w1')
-rw-r--r--drivers/w1/masters/omap_hdq.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/w1/masters/omap_hdq.c b/drivers/w1/masters/omap_hdq.c
index 0e2f43bccf1f..a2eec97d5064 100644
--- a/drivers/w1/masters/omap_hdq.c
+++ b/drivers/w1/masters/omap_hdq.c
@@ -618,7 +618,6 @@ static u8 omap_w1_read_byte(void *_hdq)
618 618
619 hdq_disable_interrupt(hdq_data, OMAP_HDQ_CTRL_STATUS, 619 hdq_disable_interrupt(hdq_data, OMAP_HDQ_CTRL_STATUS,
620 ~OMAP_HDQ_CTRL_STATUS_INTERRUPTMASK); 620 ~OMAP_HDQ_CTRL_STATUS_INTERRUPTMASK);
621 hdq_data->hdq_usecount = 0;
622 621
623 /* Write followed by a read, release the module */ 622 /* Write followed by a read, release the module */
624 if (hdq_data->init_trans) { 623 if (hdq_data->init_trans) {