All of lore.kernel.org
 help / color / mirror / Atom feed
From: lee.jones@linaro.org (Lee Jones)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v2 3/6] mailbox: Add support for ST's Mailbox IP
Date: Thu, 30 Jul 2015 12:45:45 +0100	[thread overview]
Message-ID: <20150730114545.GG14642@x1> (raw)
In-Reply-To: <1438121215.30903.27.camel@tiscali.nl>

On Wed, 29 Jul 2015, Paul Bolle wrote:

> On ma, 2015-07-27 at 10:44 +0100, Lee Jones wrote:
> > --- /dev/null
> > +++ b/drivers/mailbox/mailbox-sti.c
> 
> > +static int sti_mbox_probe(struct platform_device *pdev)
> > +{
> > +	[...]
> > +
> > +	match = of_match_device(sti_mailbox_match, &pdev->dev);
> > +	if (!match) {
> > +		dev_err(&pdev->dev, "No configuration found\n");
> > +		return -ENODEV;
> > +	}
> > +	pdev->dev.platform_data = (struct sti_mbox_pdata *) match->data;
> > +
> > +	[...]
> > +}
> 
> > +static struct platform_driver sti_mbox_driver = {
> > +	.probe = sti_mbox_probe,
> > +	.remove = sti_mbox_remove,
> > +	.driver = {
> > +		.name = "sti-mailbox",
> > +		.of_match_table = sti_mailbox_match,
> > +	},
> > +};
> > +module_platform_driver(sti_mbox_driver);
> 
> > +MODULE_ALIAS("platform:mailbox-sti");
> 
> It seems this alias is only useful if there's a corresponding struct
> platform_device with a "mailbox-sti" .name. I couldn't spot that
> platform_device.
> 
> Besides, if I read sti_max_probe() correctly, without OF support loading
> this module won't accomplish much. So what would another way of
> autoloading this module buy you?

I think this line can be safely removed.

-- 
Lee Jones
Linaro STMicroelectronics Landing Team Lead
Linaro.org ? Open source software for ARM SoCs
Follow Linaro: Facebook | Twitter | Blog

WARNING: multiple messages have this Message-ID (diff)
From: Lee Jones <lee.jones@linaro.org>
To: Paul Bolle <pebolle@tiscali.nl>
Cc: linux-arm-kernel@lists.infradead.org,
	linux-kernel@vger.kernel.org, kernel@stlinux.com,
	jassisinghbrar@gmail.com, devicetree@vger.kernel.org
Subject: Re: [PATCH v2 3/6] mailbox: Add support for ST's Mailbox IP
Date: Thu, 30 Jul 2015 12:45:45 +0100	[thread overview]
Message-ID: <20150730114545.GG14642@x1> (raw)
In-Reply-To: <1438121215.30903.27.camel@tiscali.nl>

On Wed, 29 Jul 2015, Paul Bolle wrote:

> On ma, 2015-07-27 at 10:44 +0100, Lee Jones wrote:
> > --- /dev/null
> > +++ b/drivers/mailbox/mailbox-sti.c
> 
> > +static int sti_mbox_probe(struct platform_device *pdev)
> > +{
> > +	[...]
> > +
> > +	match = of_match_device(sti_mailbox_match, &pdev->dev);
> > +	if (!match) {
> > +		dev_err(&pdev->dev, "No configuration found\n");
> > +		return -ENODEV;
> > +	}
> > +	pdev->dev.platform_data = (struct sti_mbox_pdata *) match->data;
> > +
> > +	[...]
> > +}
> 
> > +static struct platform_driver sti_mbox_driver = {
> > +	.probe = sti_mbox_probe,
> > +	.remove = sti_mbox_remove,
> > +	.driver = {
> > +		.name = "sti-mailbox",
> > +		.of_match_table = sti_mailbox_match,
> > +	},
> > +};
> > +module_platform_driver(sti_mbox_driver);
> 
> > +MODULE_ALIAS("platform:mailbox-sti");
> 
> It seems this alias is only useful if there's a corresponding struct
> platform_device with a "mailbox-sti" .name. I couldn't spot that
> platform_device.
> 
> Besides, if I read sti_max_probe() correctly, without OF support loading
> this module won't accomplish much. So what would another way of
> autoloading this module buy you?

I think this line can be safely removed.

-- 
Lee Jones
Linaro STMicroelectronics Landing Team Lead
Linaro.org │ Open source software for ARM SoCs
Follow Linaro: Facebook | Twitter | Blog

  reply	other threads:[~2015-07-30 11:45 UTC|newest]

Thread overview: 89+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-07-27  9:44 [PATCH v2 0/6] Mailbox: Provide support STi based platforms Lee Jones
2015-07-27  9:44 ` Lee Jones
2015-07-27  9:44 ` Lee Jones
2015-07-27  9:44 ` [PATCH v2 1/6] mailbox: dt: Supply bindings for ST's Mailbox IP Lee Jones
2015-07-27  9:44   ` Lee Jones
2015-07-27  9:44 ` [PATCH v2 2/6] mailbox: dt-bindings: Add shared [driver <=> device tree] defines Lee Jones
2015-07-27  9:44   ` Lee Jones
2015-08-10  6:58   ` Jassi Brar
2015-08-10  6:58     ` Jassi Brar
2015-08-10  6:58     ` Jassi Brar
2015-08-10  8:24     ` Lee Jones
2015-08-10  8:24       ` Lee Jones
2015-08-10  8:47       ` Jassi Brar
2015-08-10  8:47         ` Jassi Brar
2015-08-10  8:47         ` Jassi Brar
2015-08-12  8:53         ` Lee Jones
2015-08-12  8:53           ` Lee Jones
2015-08-12 10:16           ` Jassi Brar
2015-08-12 10:16             ` Jassi Brar
2015-08-12 10:43             ` Lee Jones
2015-08-12 10:43               ` Lee Jones
2015-08-12 10:43               ` Lee Jones
2015-07-27  9:44 ` [PATCH v2 3/6] mailbox: Add support for ST's Mailbox IP Lee Jones
2015-07-27  9:44   ` Lee Jones
2015-07-28 22:06   ` Paul Bolle
2015-07-28 22:06     ` Paul Bolle
2015-07-30 11:45     ` Lee Jones [this message]
2015-07-30 11:45       ` Lee Jones
2015-07-30 12:48       ` Paul Bolle
2015-07-30 12:48         ` Paul Bolle
2015-07-30 12:48         ` Paul Bolle
2015-07-30 13:31         ` Lee Jones
2015-07-30 13:31           ` Lee Jones
2015-08-13 15:40   ` Jassi Brar
2015-08-13 15:40     ` Jassi Brar
2015-08-13 15:40     ` Jassi Brar
2015-08-14  6:33     ` Lee Jones
2015-08-14  6:33       ` Lee Jones
2015-08-14  6:33       ` Lee Jones
2015-08-14  7:39       ` Jassi Brar
2015-08-14  7:39         ` Jassi Brar
2015-08-14  7:39         ` Jassi Brar
2015-08-14 10:41         ` Lee Jones
2015-08-14 10:41           ` Lee Jones
2015-08-14 10:41           ` Lee Jones
2015-07-27  9:44 ` [PATCH v2 4/6] ARM: STi: stih407-family: Add nodes for Mailbox Lee Jones
2015-07-27  9:44   ` Lee Jones
2015-07-27  9:44 ` [PATCH v2 5/6] mailbox: Add generic mechanism for testing Mailbox Controllers Lee Jones
2015-07-27  9:44   ` Lee Jones
2015-07-27  9:44   ` Lee Jones
2015-08-10  6:45   ` Jassi Brar
2015-08-10  6:45     ` Jassi Brar
2015-08-10  6:45     ` Jassi Brar
2015-08-12 10:23     ` Lee Jones
2015-08-12 10:23       ` Lee Jones
2015-08-13  8:51       ` Jassi Brar
2015-08-13  8:51         ` Jassi Brar
2015-08-13  8:51         ` Jassi Brar
2015-08-13  9:19         ` Lee Jones
2015-08-13  9:19           ` Lee Jones
2015-08-13  9:19           ` Lee Jones
2015-08-13 10:01           ` Jassi Brar
2015-08-13 10:01             ` Jassi Brar
2015-08-13 10:01             ` Jassi Brar
2015-08-13 10:23             ` Lee Jones
2015-08-13 10:23               ` Lee Jones
2015-08-13 10:41               ` Jassi Brar
2015-08-13 10:41                 ` Jassi Brar
2015-08-13 10:41                 ` Jassi Brar
2015-08-13 11:00                 ` Lee Jones
2015-08-13 11:00                   ` Lee Jones
2015-08-13 11:10                   ` Jassi Brar
2015-08-13 11:10                     ` Jassi Brar
2015-08-13 11:10                     ` Jassi Brar
2015-08-13 11:40                     ` Lee Jones
2015-08-13 11:40                       ` Lee Jones
2015-08-13 12:47                       ` Jassi Brar
2015-08-13 12:47                         ` Jassi Brar
2015-08-13 12:47                         ` Jassi Brar
2015-08-13 13:07                         ` Lee Jones
2015-08-13 13:07                           ` Lee Jones
2015-08-13 13:07                           ` Lee Jones
2015-08-13 13:46                           ` Jassi Brar
2015-08-13 13:46                             ` Jassi Brar
2015-08-13 13:46                             ` Jassi Brar
2015-08-13 14:26                             ` Lee Jones
2015-08-13 14:26                               ` Lee Jones
2015-07-27  9:44 ` [PATCH v2 6/6] ARM: STi: DT: STiH407: Enable Mailbox testing facility Lee Jones
2015-07-27  9:44   ` Lee Jones

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=20150730114545.GG14642@x1 \
    --to=lee.jones@linaro.org \
    --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.