Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755098Ab0LANFN (ORCPT ); Wed, 1 Dec 2010 08:05:13 -0500 Received: from mail-px0-f174.google.com ([209.85.212.174]:47610 "EHLO mail-px0-f174.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755034Ab0LANFL (ORCPT ); Wed, 1 Dec 2010 08:05:11 -0500 DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:subject:date:message-id:x-mailer; b=APc4tEHrGW+LaffcgTcS3KnVxJqeBYfBIPYiglfKl6zZax1JtJUxn3/8S2mwhrR7A3 WYtIHFeKluEXFHowAbJK5mbPQLny2qRgNLC2+bnKMjYhow/TBwDRNXG1LqmlLSDT7S4w R4vjEX8npvVkFuk7pfj9tFxZS6yWPK/oHghew= From: Namhyung Kim To: Dmitry Torokhov Cc: linux-input@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH] Input: turbografx - fix reference counting Date: Wed, 1 Dec 2010 22:05:01 +0900 Message-Id: <1291208701-3016-1-git-send-email-namhyung@gmail.com> X-Mailer: git-send-email 1.7.0.4 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 894 Lines: 28 The ref-count of parport gained from parport_find_number() was not released in normal path. 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 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/