From patchwork Sun Sep 12 13:48:25 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Javier Martinez Canillas X-Patchwork-Id: 173112 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter1.kernel.org (8.14.4/8.14.3) with ESMTP id o8CDn4Tn028597 for ; Sun, 12 Sep 2010 13:49:05 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752769Ab0ILNsg (ORCPT ); Sun, 12 Sep 2010 09:48:36 -0400 Received: from mail-yw0-f46.google.com ([209.85.213.46]:56449 "EHLO mail-yw0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752726Ab0ILNsf (ORCPT ); Sun, 12 Sep 2010 09:48:35 -0400 Received: by ywh1 with SMTP id 1so1744305ywh.19 for ; Sun, 12 Sep 2010 06:48:34 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:subject:from:to:content-type :date:message-id:mime-version:x-mailer:content-transfer-encoding; bh=eOqgcBhlImnGx85XyEmHWmXfYa9WSlWGTdLLZs8JDO0=; b=GEwVbK/cGhKpME207isP5M+r8XHVk0Lb119+BSU0+YZHBrsJv3P7MuE6KMUAKYK2AD jDurzKm1DUM5sHEPrzwih5LcD5FRqTqtxc+CGVW0n9E6+o5dWmuFNqrzcN9HtJXsAoK0 zd9Ro9EjusRwVEYU6NAxVDGe+YaZ5iE25idcY= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=subject:from:to:content-type:date:message-id:mime-version:x-mailer :content-transfer-encoding; b=qp8Yi/DML2ZVrimWUXzH+5BPs61bsT6vf1YNmgazwxT/afQ4lYfdnv7h1415e6rWea /0WKP8BYKtngvHxfciLs9hccbIjRchiEUOwhHWqEOY/ONe8Xf8leLIFZi1VZbFKgD/wC zU4K24syCNZbRWIGOuzC6gwAhrEzHWh4yjFvc= Received: by 10.101.67.9 with SMTP id u9mr2678241ank.82.1284299314453; Sun, 12 Sep 2010 06:48:34 -0700 (PDT) Received: from [170.51.32.253] ([170.51.32.253]) by mx.google.com with ESMTPS id e18sm8045269ana.35.2010.09.12.06.48.30 (version=SSLv3 cipher=RC4-MD5); Sun, 12 Sep 2010 06:48:33 -0700 (PDT) Subject: [PATCH] ACPI: apei: Cast u64 to unsigned long, fix compile warning From: Javier Martinez Canillas To: Len Brown , Huang Ying , Andrew Morton , Andi Kleen , Thomas Gleixner , linux-acpi@vger.kernel.org, linux-kernel@vger.kernel.org, kernel-janitors@vger.kernel.org Date: Sun, 12 Sep 2010 09:48:25 -0400 Message-ID: <1284299305.7239.4.camel@lenovo> Mime-Version: 1.0 X-Mailer: Evolution 2.28.3 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 (demeter1.kernel.org [140.211.167.41]); Sun, 12 Sep 2010 13:49:05 +0000 (UTC) diff --git a/drivers/acpi/apei/erst.c b/drivers/acpi/apei/erst.c index a4904f1..37d7a05 100644 --- a/drivers/acpi/apei/erst.c +++ b/drivers/acpi/apei/erst.c @@ -270,8 +270,8 @@ static int erst_exec_move_data(struct apei_exec_context *ctx, rc = __apei_exec_read_register(entry, &offset); if (rc) return rc; - memmove((void *)ctx->dst_base + offset, - (void *)ctx->src_base + offset, + memmove((void *)(unsigned long)ctx->dst_base + offset, + (void *)(unsigned long)ctx->src_base + offset, ctx->var2); return 0;