From patchwork Thu Jul 1 20:01:04 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Justin P. Mattock" X-Patchwork-Id: 109374 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter.kernel.org (8.14.4/8.14.3) with ESMTP id o61K0eoY002560 for ; Thu, 1 Jul 2010 20:00:40 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758142Ab0GAUAj (ORCPT ); Thu, 1 Jul 2010 16:00:39 -0400 Received: from mail-px0-f174.google.com ([209.85.212.174]:64084 "EHLO mail-px0-f174.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757879Ab0GAUAi (ORCPT ); Thu, 1 Jul 2010 16:00:38 -0400 Received: by pxi14 with SMTP id 14so507024pxi.19 for ; Thu, 01 Jul 2010 13:00:37 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from :user-agent:mime-version:to:cc:subject:references:in-reply-to :content-type:content-transfer-encoding; bh=kF6o3HJ+ouOOtil6uY5kFyp/Oj60DMGFmR9NZrQN4mc=; b=b47dQYtsmmB5ZaciRXxHQ9P51izcmqemgxb6VuqPzNBdUsJdyO+wgEeOjpFbQfw88J eyKCNorTDUEsoAUrL/RDteZOVY+0Lg9gJX/tVeAH/5ebixIpa0o0mAew6mzGjpOWU4Sl /hRwPDY4lka+fFbk03o6V8WTcmEbeQqCOTbxo= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:content-type:content-transfer-encoding; b=X3TuFodYWbial3HHgKs1f2AUx1KKXHWTWRpLhRl7PjFtdXpoZOQBuzvC98UUd20OpQ sys23NaMR+LqIjTi6dSDfg6dTf+WkMMlIoxsR0dviSrVbwF058AG31GfaQC2kAUi1Rl7 L0E9MALfbekppdHWkciWldxN/2gie5m6VW2fM= Received: by 10.115.32.19 with SMTP id k19mr24614waj.1.1278014437237; Thu, 01 Jul 2010 13:00:37 -0700 (PDT) Received: from [10.0.0.98] ([76.91.45.220]) by mx.google.com with ESMTPS id n32sm92019948wag.19.2010.07.01.13.00.34 (version=SSLv3 cipher=RC4-MD5); Thu, 01 Jul 2010 13:00:35 -0700 (PDT) Message-ID: <4C2CF400.20507@gmail.com> Date: Thu, 01 Jul 2010 13:01:04 -0700 From: "Justin P. Mattock" User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.9) Gecko/20100615 Lightning/1.0b2pre Thunderbird/3.0.4 MIME-Version: 1.0 To: David Howells CC: linux-kernel@vger.kernel.org, linux-acpi@vger.kernel.org, lenb@kernel.org Subject: Re: [PATCH 3/5]acpi:glue.c Fix warning: variable 'ret' set but not used References: <4C2B9F49.8090304@gmail.com> <4C2A6B6C.1000306@gmail.com> <4C29674C.9070503@gmail.com> <4C28E14D.5050701@gmail.com> <1277621246-10960-4-git-send-email-justinmattock@gmail.com> <1277621246-10960-1-git-send-email-justinmattock@gmail.com> <7214.1277729293@redhat.com> <8066.1277750854@redhat.com> <22319.1277826461@redhat.com> <25800.1277889215@redhat.com> <16513.1277976706@redhat.com> In-Reply-To: <16513.1277976706@redhat.com> Sender: linux-acpi-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-acpi@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.3 (demeter.kernel.org [140.211.167.41]); Thu, 01 Jul 2010 20:00:40 +0000 (UTC) diff --git a/drivers/acpi/glue.c b/drivers/acpi/glue.c index 4af6301..23b16e6 100644 --- a/drivers/acpi/glue.c +++ b/drivers/acpi/glue.c @@ -145,6 +145,7 @@ static int acpi_bind_one(struct device *dev, acpi_handle handle) { struct acpi_device *acpi_dev; acpi_status status; + int fn, pn; if (dev->archdata.acpi_handle) {