From patchwork Mon Jan 18 17:19:30 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bartlomiej Zolnierkiewicz X-Patchwork-Id: 43128 X-Patchwork-Delegate: davem@davemloft.net Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id EB935B7C94 for ; Tue, 19 Jan 2010 04:30:05 +1100 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755227Ab0ARRUp (ORCPT ); Mon, 18 Jan 2010 12:20:45 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1755146Ab0ARRUn (ORCPT ); Mon, 18 Jan 2010 12:20:43 -0500 Received: from mail-ew0-f214.google.com ([209.85.219.214]:52797 "EHLO mail-ew0-f214.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755227Ab0ARRUl (ORCPT ); Mon, 18 Jan 2010 12:20:41 -0500 Received: by mail-ew0-f214.google.com with SMTP id 6so3708367ewy.29 for ; Mon, 18 Jan 2010 09:20:39 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:to:cc:date:message-id :in-reply-to:references:subject; bh=EBQgexbD2nj9OzpIH3EmHc6oLX4L8nyN1pPImRTiucY=; b=g+DPLuQ6OPi3VgsAbpYoF4oocxYuRVk+j2fYkeJ+1MO0R8U1bhWBCzxmXBQmngYPI4 cuFogT+H3UMu+nA0+PhJ6Gn9z+Xlk5an2fovmtMnIKW5nGQ4S9/xP8dKFRJKQJS9RSFt Pw7IJUPwIZhrlItUOc9wAhABI8FaxYrsez+pw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:date:message-id:in-reply-to:references:subject; b=spmSUX+dalmmTrgGTeB2p4Xv9A6xzi2s/BKsP9S5FJWoN0vv8P0O8ZD0f/tmpUxpQo J5hprJAIG6jtuRsBzKpvgJp/+7RMOD16kVkWv5v8BT3z0GAI5D0b/QqN2/3WMTAZm/iM Pupeo+G4EdmPn8+YGIf/X5KU07i2bZWGv95C8= Received: by 10.216.89.140 with SMTP id c12mr2139510wef.223.1263835239175; Mon, 18 Jan 2010 09:20:39 -0800 (PST) Received: from ?127.0.0.1? (chello089079027028.chello.pl [89.79.27.28]) by mx.google.com with ESMTPS id j8sm6661156gvb.2.2010.01.18.09.20.38 (version=TLSv1/SSLv3 cipher=RC4-MD5); Mon, 18 Jan 2010 09:20:38 -0800 (PST) From: Bartlomiej Zolnierkiewicz To: linux-ide@vger.kernel.org Cc: Bartlomiej Zolnierkiewicz , linux-kernel@vger.kernel.org Date: Mon, 18 Jan 2010 18:19:30 +0100 Message-Id: <20100118171930.14623.11967.sendpatchset@localhost> In-Reply-To: <20100118171349.14623.90030.sendpatchset@localhost> References: <20100118171349.14623.90030.sendpatchset@localhost> Subject: [PATCH 38/64] serverworks: add missing pci_dev_put() call Sender: linux-ide-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-ide@vger.kernel.org From: Bartlomiej Zolnierkiewicz Subject: [PATCH] serverworks: add missing pci_dev_put() call Signed-off-by: Bartlomiej Zolnierkiewicz --- drivers/ide/serverworks.c | 1 + 1 file changed, 1 insertion(+) -- To unsubscribe from this list: send the line "unsubscribe linux-ide" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Index: b/drivers/ide/serverworks.c =================================================================== --- a/drivers/ide/serverworks.c +++ b/drivers/ide/serverworks.c @@ -178,6 +178,7 @@ static int init_chipset_svwks(struct pci "enabled.\n", pci_name(dev)); reg |= 0x00004000; /* enable UDMA/33 support */ pci_write_config_dword(isa_dev, 0x64, reg); + pci_dev_put(isa_dev); } }