From mboxrd@z Thu Jan 1 00:00:00 1970 From: Dmitry Torokhov Subject: Re: [PATCH] Input: turbografx - fix reference counting Date: Wed, 1 Dec 2010 09:20:59 -0800 Message-ID: <20101201172059.GC11196@core.coreip.homeip.net> References: <1291208701-3016-1-git-send-email-namhyung@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from mail-gx0-f174.google.com ([209.85.161.174]:41677 "EHLO mail-gx0-f174.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752886Ab0LARVV (ORCPT ); Wed, 1 Dec 2010 12:21:21 -0500 Content-Disposition: inline In-Reply-To: <1291208701-3016-1-git-send-email-namhyung@gmail.com> Sender: linux-input-owner@vger.kernel.org List-Id: linux-input@vger.kernel.org To: Namhyung Kim Cc: linux-input@vger.kernel.org, linux-kernel@vger.kernel.org On Wed, Dec 01, 2010 at 10:05:01PM +0900, Namhyung Kim wrote: > The ref-count of parport gained from parport_find_number() > was not released in normal path. > Applied, thanks. > Signed-off-by: Namhyung Kim > --- > drivers/input/joystick/turbografx.c | 1 + > 1 files changed, 1 insertions(+), 0 deletions(-) > > diff --git a/drivers/input/joystick/turbografx.c b/drivers/input/joystick/turbografx.c > index d53b9e9..27b6a3c 100644 > --- a/drivers/input/joystick/turbografx.c > +++ b/drivers/input/joystick/turbografx.c > @@ -245,6 +245,7 @@ static struct tgfx __init *tgfx_probe(int parport, int *n_buttons, int n_devs) > goto err_free_tgfx; > } > > + parport_put_port(pp); > return tgfx; > > err_free_dev: > -- > 1.7.0.4 > -- Dmitry