public inbox for netdev@vger.kernel.org 
 help / color / mirror / Atom feed
From: Marc Kleine-Budde <mkl@pengutronix•de>
To: "bhupesh.sharma@freescale•com" <bhupesh.sharma@freescale•com>,
	"linux-can@vger•kernel.org" <linux-can@vger•kernel.org>
Cc: "wg@grandegger•com" <wg@grandegger•com>,
	"netdev@vger•kernel.org" <netdev@vger•kernel.org>
Subject: Re: [PATCH] net: can: Remodel FlexCAN register read/write APIs for BE instances
Date: Thu, 26 Jun 2014 11:28:36 +0200	[thread overview]
Message-ID: <53ABE7C4.8070105@pengutronix.de> (raw)
In-Reply-To: <53AB1C3C.8@pengutronix.de>

[-- Attachment #1: Type: text/plain, Size: 1084 bytes --]

On 06/25/2014 09:00 PM, Marc Kleine-Budde wrote:
>> How does this look (a bit messed up, so I am open for comments):
> 
> What about:
> 
> static u32 flexcan_read_le(void __iomem *addr)
> {
> 	return ioread32(addr);
> }
> 
> static u32 flexcan_read_be(void __iomem *addr)
> {
> 	return ioread32be(addr);
> }
> 
> flexcan_probe ()
> {
> 	bool core_is_little = true;
> 
> 	/* or #ifdef __BIG_ENDIAN ... #endif instead of IS_ENABLED() */
> 	if (IS_ENABLED(CONFIG_CPU_BIG_ENDIAN) ||
> 	    of_property_read_bool(dev->dev.of_node, "big-endian"))
> 		core_is_little = false;

 	if (of_property_read_bool(dev->dev.of_node, "little-endian"))
		core_is_little = true;

> 	if (core_is_little)
> 		priv->read = flexcan_read_le;
> 	else
> 		priv->read = flexcan_read_be;
> 
> }

Marc

-- 
Pengutronix e.K.                  | Marc Kleine-Budde           |
Industrial Linux Solutions        | Phone: +49-231-2826-924     |
Vertretung West/Dortmund          | Fax:   +49-5121-206917-5555 |
Amtsgericht Hildesheim, HRA 2686  | http://www.pengutronix.de   |


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 242 bytes --]

  reply	other threads:[~2014-06-26  9:28 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-06-24 15:54 [PATCH] net: can: Remodel FlexCAN register read/write APIs for BE instances Bhupesh Sharma
2014-06-25  8:27 ` Marc Kleine-Budde
2014-06-25  9:41   ` bhupesh.sharma
2014-06-25 10:26     ` Marc Kleine-Budde
2014-06-25 11:01       ` bhupesh.sharma
2014-06-25 11:07         ` Marc Kleine-Budde
2014-06-25 14:16           ` bhupesh.sharma
2014-06-25 19:00             ` Marc Kleine-Budde
2014-06-26  9:28               ` Marc Kleine-Budde [this message]
2014-06-26  9:30                 ` bhupesh.sharma
2014-06-26  9:35                   ` Marc Kleine-Budde
2014-06-25 10:29     ` David Laight
2014-06-25 10:34       ` Marc Kleine-Budde
2014-06-25  8:58 ` David Laight
2014-06-25  9:55   ` bhupesh.sharma

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=53ABE7C4.8070105@pengutronix.de \
    --to=mkl@pengutronix$(echo .)de \
    --cc=bhupesh.sharma@freescale$(echo .)com \
    --cc=linux-can@vger$(echo .)kernel.org \
    --cc=netdev@vger$(echo .)kernel.org \
    --cc=wg@grandegger$(echo .)com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox