Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752911AbYLMXCH (ORCPT ); Sat, 13 Dec 2008 18:02:07 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1751971AbYLMXBy (ORCPT ); Sat, 13 Dec 2008 18:01:54 -0500 Received: from wf-out-1314.google.com ([209.85.200.173]:55139 "EHLO wf-out-1314.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751884AbYLMXBx (ORCPT ); Sat, 13 Dec 2008 18:01:53 -0500 DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=subject:from:to:cc:content-type:date:message-id:mime-version :x-mailer:content-transfer-encoding; b=RvKQ7ifvYw6i8smEQ4FaFk5AWzwpOtwC0g9aRtGX1hziDX5jIymJ2w7Vxx8k+r6MjR IzcTxEAJT6M/Pz6p+TaNYxs33ZYtyg5CzNr1hSRJdHxR3jJI7SlcUoT3dUlNkJZXrhl8 r6/Hz219a4ud5tjBpouXnawlcrVk44kKvt4e0= Subject: [PATCH 1/4] pcilynx: trivial endian annotation From: Harvey Harrison To: Stefan Richter Cc: LKML Content-Type: text/plain Date: Sat, 13 Dec 2008 15:01:50 -0800 Message-Id: <1229209311.11257.9.camel@brick> Mime-Version: 1.0 X-Mailer: Evolution 2.24.1 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1101 Lines: 33 bus_info_block was treated as a be32 everywhere, annotate as such. Removes plenty of sparse warnings. Signed-off-by: Harvey Harrison --- Hi Stefan, should be no funcitonal changes in this batch, just breaking up the sparse fixes in to more digestible chunks. drivers/ieee1394/pcilynx.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/ieee1394/pcilynx.h b/drivers/ieee1394/pcilynx.h index ec27321..693a169 100644 --- a/drivers/ieee1394/pcilynx.h +++ b/drivers/ieee1394/pcilynx.h @@ -52,7 +52,7 @@ struct ti_lynx { void __iomem *local_rom; void __iomem *local_ram; void __iomem *aux_port; - quadlet_t bus_info_block[5]; + __be32 bus_info_block[5]; /* * use local RAM of LOCALRAM_SIZE bytes for PCLs, which allows for -- 1.6.1.rc2.306.ge5d5e -- 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/