All of lore.kernel.org
 help / color / mirror / Atom feed
From: marek.behun@nic.cz (Marek Behún)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v1 2/7] drivers: mfd: Add support for Moxtet bus
Date: Wed, 8 Aug 2018 17:32:40 +0200	[thread overview]
Message-ID: <20180808173240.34c56b49@dellmb.labs.office.nic.cz> (raw)
In-Reply-To: <20180808152706.21727-3-marek.behun@nic.cz>

I found out that there are two calls to dev_err with too many
arguments, will patch in next version.

On Wed,  8 Aug 2018 17:27:01 +0200
Marek Beh?n <marek.behun@nic.cz> wrote:

> +static void
> +moxtet_register_devices_from_topology(struct moxtet *moxtet)
> +{
> +	struct moxtet_device *dev;
> +	int i, ret;
> +
> +	for (i = 0; i < moxtet->count; ++i) {
> +		dev = moxtet_alloc_device(moxtet);
> +		if (!dev) {
> +			dev_err(moxtet->dev, "Moxtet device %u alloc
> error\n",
> +				i, moxtet->modules[i]);

here

> +			continue;
> +		}
> +
> +		dev->idx = i;
> +		dev->id = moxtet->modules[i];
> +
> +		ret = moxtet_add_device(dev);
> +		if (ret && ret != -EBUSY) {
> +			dev_err(moxtet->dev,
> +				"Moxtet device %u register error:
> %i\n", i,
> +				moxtet->modules[i], ret);

and here

> +		}
> +	}
> +}

  reply	other threads:[~2018-08-08 15:32 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-08-08 15:26 [PATCH v1 0/7] Add support for the Turris Mox router Marek Behún
2018-08-08 15:27 ` [PATCH v1 1/7] From: Ken Ma <make@marvell.com> Marek Behún
2018-08-08 16:49   ` Andrew Lunn
2018-08-08 15:27 ` [PATCH v1 2/7] drivers: mfd: Add support for Moxtet bus Marek Behún
2018-08-08 15:32   ` Marek Behún [this message]
2018-08-08 15:27 ` [PATCH v1 3/7] drivers: gpio: Add support for Turris Mox SFP GPIOs Marek Behún
2018-08-08 16:55   ` Andrew Lunn
2018-08-08 20:40     ` Marek Behun
2018-08-08 15:27 ` [PATCH v1 4/7] watchdog: Add support for Armada 37xx CPU watchdog Marek Behún
2018-08-08 15:27 ` [PATCH v1 5/7] arm64: dts: marvell: armada-37xx: add nodes to support watchdog Marek Behún
2018-08-08 15:27 ` [PATCH v1 6/7] net: mvneta: Don't use GRO on Armada 3720 Marek Behún
2018-08-08 15:27   ` Marek Behún
2018-08-08 16:58   ` Andrew Lunn
2018-08-08 16:58     ` Andrew Lunn
2018-08-08 17:57     ` Dave Taht
2018-08-08 17:57       ` Dave Taht
2018-08-09  4:40   ` Jisheng Zhang
2018-08-09  4:40     ` Jisheng Zhang
2018-08-09 11:27     ` Jisheng Zhang
2018-08-09 11:27       ` Jisheng Zhang
2018-08-09 12:08       ` Jisheng Zhang
2018-08-09 12:08         ` Jisheng Zhang
2018-08-21 10:07         ` Marek Behún
2018-08-21 10:07           ` Marek Behún
2018-08-08 15:27 ` [PATCH v1 7/7] ARM64: dts: marvell: Add DTS files for Turris Mox Marek Behún

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=20180808173240.34c56b49@dellmb.labs.office.nic.cz \
    --to=marek.behun@nic.cz \
    --cc=linux-arm-kernel@lists.infradead.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.