* [PATCH 13/33] drivers/net/ethernet/renesas: don't check resource with devm_ioremap_resource
2013-05-16 11:15 [PATCH 00/33] devm improvement series, part 1, take 2 Wolfram Sang
@ 2013-05-16 11:15 ` Wolfram Sang
2013-05-16 15:37 ` Joe Perches
2013-05-16 11:57 ` [PATCH 00/33] devm improvement series, part 1, take 2 Artem Bityutskiy
` (2 subsequent siblings)
3 siblings, 1 reply; 10+ messages in thread
From: Wolfram Sang @ 2013-05-16 11:15 UTC (permalink / raw)
To: linux-kernel; +Cc: Wolfram Sang, netdev
devm_ioremap_resource does sanity checks on the given resource. No need to
duplicate this in the driver.
Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
---
drivers/net/ethernet/renesas/sh_eth.c | 5 -----
1 file changed, 5 deletions(-)
diff --git a/drivers/net/ethernet/renesas/sh_eth.c b/drivers/net/ethernet/renesas/sh_eth.c
index 33dc6f2..42e9dd0 100644
--- a/drivers/net/ethernet/renesas/sh_eth.c
+++ b/drivers/net/ethernet/renesas/sh_eth.c
@@ -2745,11 +2745,6 @@ static int sh_eth_drv_probe(struct platform_device *pdev)
if (mdp->cd->tsu) {
struct resource *rtsu;
rtsu = platform_get_resource(pdev, IORESOURCE_MEM, 1);
- if (!rtsu) {
- dev_err(&pdev->dev, "Not found TSU resource\n");
- ret = -ENODEV;
- goto out_release;
- }
mdp->tsu_addr = devm_ioremap_resource(&pdev->dev, rtsu);
if (IS_ERR(mdp->tsu_addr)) {
ret = PTR_ERR(mdp->tsu_addr);
--
1.7.10.4
^ permalink raw reply related [flat|nested] 10+ messages in thread* Re: [PATCH 13/33] drivers/net/ethernet/renesas: don't check resource with devm_ioremap_resource
2013-05-16 11:15 ` [PATCH 13/33] drivers/net/ethernet/renesas: don't check resource with devm_ioremap_resource Wolfram Sang
@ 2013-05-16 15:37 ` Joe Perches
0 siblings, 0 replies; 10+ messages in thread
From: Joe Perches @ 2013-05-16 15:37 UTC (permalink / raw)
To: Wolfram Sang; +Cc: linux-kernel, netdev
On Thu, 2013-05-16 at 13:15 +0200, Wolfram Sang wrote:
> devm_ioremap_resource does sanity checks on the given resource. No need to
> duplicate this in the driver.
[]
> diff --git a/drivers/net/ethernet/renesas/sh_eth.c b/drivers/net/ethernet/renesas/sh_eth.c
[]
> @@ -2745,11 +2745,6 @@ static int sh_eth_drv_probe(struct platform_device *pdev)
> if (mdp->cd->tsu) {
> struct resource *rtsu;
> rtsu = platform_get_resource(pdev, IORESOURCE_MEM, 1);
> - if (!rtsu) {
> - dev_err(&pdev->dev, "Not found TSU resource\n");
> - ret = -ENODEV;
> - goto out_release;
> - }
> mdp->tsu_addr = devm_ioremap_resource(&pdev->dev, rtsu);
> if (IS_ERR(mdp->tsu_addr)) {
> ret = PTR_ERR(mdp->tsu_addr);
I'm not sure it matters, but at least one of these
conversions will now return -EINVAL instead of -ENODEV
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 00/33] devm improvement series, part 1, take 2
2013-05-16 11:15 [PATCH 00/33] devm improvement series, part 1, take 2 Wolfram Sang
2013-05-16 11:15 ` [PATCH 13/33] drivers/net/ethernet/renesas: don't check resource with devm_ioremap_resource Wolfram Sang
@ 2013-05-16 11:57 ` Artem Bityutskiy
2013-05-16 12:55 ` Viresh Kumar
2013-05-16 18:29 ` Stephen Warren
2013-05-23 20:32 ` Thierry Reding
3 siblings, 1 reply; 10+ messages in thread
From: Artem Bityutskiy @ 2013-05-16 11:57 UTC (permalink / raw)
To: Wolfram Sang
Cc: linux-mips, alsa-devel, Alessandro Zummo, Liam Girdwood,
Alexander Shishkin, Viresh Kumar, Linus Walleij, Thierry Reding,
linux-fbdev, dri-devel, Jaroslav Kysela, linux-ide, linux-mtd,
linux-i2c, Evgeniy Polyakov, ac100, devel, Kukjin Kim,
Russell King, Herbert Xu, Samuel Ortiz, Florian Tobias Schandinat,
Vinod Koul, linux-pm, cpufreq
On Thu, 2013-05-16 at 13:15 +0200, Wolfram Sang wrote:
> Despite various architectures and platform dependencies, I managed to
> compile
> test 45 out of 57 modified files locally using heuristics and
> defconfigs.
> If somebody knows how to create a minimal .config with a certain
> kconfig symbol
> (and its dependencies) set, I'd love to hear about it.
If you find this out, please, share!
--
Best Regards,
Artem Bityutskiy
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 00/33] devm improvement series, part 1, take 2
2013-05-16 11:57 ` [PATCH 00/33] devm improvement series, part 1, take 2 Artem Bityutskiy
@ 2013-05-16 12:55 ` Viresh Kumar
2013-05-16 13:11 ` Artem Bityutskiy
0 siblings, 1 reply; 10+ messages in thread
From: Viresh Kumar @ 2013-05-16 12:55 UTC (permalink / raw)
To: dedekind1
Cc: Wolfram Sang, linux-kernel, linux-mips, alsa-devel, linux-usb,
Alexander Shishkin, Linus Walleij, Matt Mackall, linux-fbdev,
dri-devel, Jaroslav Kysela, linux-ide, Wim Van Sebroeck, netdev,
linux-mtd, linux-i2c, Evgeniy Polyakov, Wan ZongShun, ac100,
devel, Kukjin Kim, Russell King, Herbert Xu, Florian
On 16 May 2013 17:27, Artem Bityutskiy <dedekind1@gmail.com> wrote:
> On Thu, 2013-05-16 at 13:15 +0200, Wolfram Sang wrote:
>> Despite various architectures and platform dependencies, I managed to
>> compile
>> test 45 out of 57 modified files locally using heuristics and
>> defconfigs.
>> If somebody knows how to create a minimal .config with a certain
>> kconfig symbol
>> (and its dependencies) set, I'd love to hear about it.
>
> If you find this out, please, share!
Are you guys looking for "make savedefconfig" ??
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 00/33] devm improvement series, part 1, take 2
2013-05-16 12:55 ` Viresh Kumar
@ 2013-05-16 13:11 ` Artem Bityutskiy
2013-05-16 13:17 ` Tomi Valkeinen
2013-05-16 16:13 ` Wolfram Sang
0 siblings, 2 replies; 10+ messages in thread
From: Artem Bityutskiy @ 2013-05-16 13:11 UTC (permalink / raw)
To: Viresh Kumar
Cc: linux-mips, alsa-devel, Alessandro Zummo, Wolfram Sang,
Alexander Shishkin, Linus Walleij, Thierry Reding, linux-fbdev,
dri-devel, Jaroslav Kysela, linux-ide, linux-mtd, linux-i2c,
Evgeniy Polyakov, ac100, devel, Kukjin Kim, Russell King,
Herbert Xu, Samuel Ortiz, Florian Tobias Schandinat, Vinod Koul,
linux-pm, cpufreq, Eduardo Valentin <eduardo.valentin@
On Thu, 2013-05-16 at 18:25 +0530, Viresh Kumar wrote:
> On 16 May 2013 17:27, Artem Bityutskiy <dedekind1@gmail.com> wrote:
> > On Thu, 2013-05-16 at 13:15 +0200, Wolfram Sang wrote:
> >> Despite various architectures and platform dependencies, I managed to
> >> compile
> >> test 45 out of 57 modified files locally using heuristics and
> >> defconfigs.
> >> If somebody knows how to create a minimal .config with a certain
> >> kconfig symbol
> >> (and its dependencies) set, I'd love to hear about it.
> >
> > If you find this out, please, share!
>
> Are you guys looking for "make savedefconfig" ??
No. It is more like:
I have changed this strange driver.
I want to compile-test my changes.
I need a defconfig which would have this driver enabled. I also want to
know <arch> for my "make ARCH=<arch>" command.
--
Best Regards,
Artem Bityutskiy
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 00/33] devm improvement series, part 1, take 2
2013-05-16 13:11 ` Artem Bityutskiy
@ 2013-05-16 13:17 ` Tomi Valkeinen
2013-05-16 16:13 ` Wolfram Sang
1 sibling, 0 replies; 10+ messages in thread
From: Tomi Valkeinen @ 2013-05-16 13:17 UTC (permalink / raw)
To: dedekind1
Cc: linux-mips, alsa-devel, Alessandro Zummo, Wolfram Sang,
Alexander Shishkin, Viresh Kumar, Linus Walleij, Thierry Reding,
linux-fbdev, dri-devel, Jaroslav Kysela, linux-ide, linux-mtd,
linux-i2c, Evgeniy Polyakov, ac100, devel, Kukjin Kim,
Russell King, Arnd Bergmann, Samuel Ortiz,
Florian Tobias Schandinat, Vinod Koul, linux-pm, cpufreq, Eduar
[-- Attachment #1.1: Type: text/plain, Size: 1568 bytes --]
On 16/05/13 16:11, Artem Bityutskiy wrote:
> On Thu, 2013-05-16 at 18:25 +0530, Viresh Kumar wrote:
>> On 16 May 2013 17:27, Artem Bityutskiy <dedekind1@gmail.com> wrote:
>>> On Thu, 2013-05-16 at 13:15 +0200, Wolfram Sang wrote:
>>>> Despite various architectures and platform dependencies, I managed to
>>>> compile
>>>> test 45 out of 57 modified files locally using heuristics and
>>>> defconfigs.
>>>> If somebody knows how to create a minimal .config with a certain
>>>> kconfig symbol
>>>> (and its dependencies) set, I'd love to hear about it.
>>>
>>> If you find this out, please, share!
>>
>> Are you guys looking for "make savedefconfig" ??
>
> No. It is more like:
>
> I have changed this strange driver.
>
> I want to compile-test my changes.
>
> I need a defconfig which would have this driver enabled. I also want to
> know <arch> for my "make ARCH=<arch>" command.
Not quite the same thing, but I sent this a while ago:
http://lkml.indiana.edu/hypermail/linux/kernel/1304.3/02847.html
My "softdepends" feature is probably not needed, as pointed out in the
thread, as the behavior can be implemented with the current Kconfig
language just fine.
I had a quick look at fbdev drivers, and some of them compile fine on
all (well, arm and x86) archs. But many do have real arch dependencies.
I think it'd be a good long term goal to make drivers arch-independent,
and add CONFIG_SHOW_ALL_DRIVERS or such, which would allow compiling
drivers that are not used on your arch, but still compile fine.
Tomi
[-- Attachment #1.2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 901 bytes --]
[-- Attachment #2: Type: text/plain, Size: 159 bytes --]
_______________________________________________
devel mailing list
devel@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/devel
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 00/33] devm improvement series, part 1, take 2
2013-05-16 13:11 ` Artem Bityutskiy
2013-05-16 13:17 ` Tomi Valkeinen
@ 2013-05-16 16:13 ` Wolfram Sang
1 sibling, 0 replies; 10+ messages in thread
From: Wolfram Sang @ 2013-05-16 16:13 UTC (permalink / raw)
To: Artem Bityutskiy
Cc: Viresh Kumar, linux-kernel, linux-mips, alsa-devel, linux-usb,
Alexander Shishkin, Linus Walleij, Matt Mackall, linux-fbdev,
dri-devel, Jaroslav Kysela, linux-ide, Wim Van Sebroeck, netdev,
linux-mtd, linux-i2c, Evgeniy Polyakov, Wan ZongShun, ac100,
devel, Kukjin Kim, Russell King, Herbert Xu, Florian
> I need a defconfig which would have this driver enabled.
My wish would be a minimal config. Right now, I try to build the driver
with the current config and when that fails I grep through the
(uncompressed) defconfigs for the symbol needed. Gives me 45/57 success
rate on this series. Not perfect, but the best I could come up with
without writing a .config-generator myself.
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 00/33] devm improvement series, part 1, take 2
2013-05-16 11:15 [PATCH 00/33] devm improvement series, part 1, take 2 Wolfram Sang
2013-05-16 11:15 ` [PATCH 13/33] drivers/net/ethernet/renesas: don't check resource with devm_ioremap_resource Wolfram Sang
2013-05-16 11:57 ` [PATCH 00/33] devm improvement series, part 1, take 2 Artem Bityutskiy
@ 2013-05-16 18:29 ` Stephen Warren
2013-05-23 20:32 ` Thierry Reding
3 siblings, 0 replies; 10+ messages in thread
From: Stephen Warren @ 2013-05-16 18:29 UTC (permalink / raw)
To: Wolfram Sang
Cc: linux-mips, alsa-devel, linux-usb, Liam Girdwood,
Alexander Shishkin, Viresh Kumar, Linus Walleij, Matt Mackall,
linux-fbdev, dri-devel, Jaroslav Kysela, linux-ide, netdev,
linux-mtd, linux-i2c, Evgeniy Polyakov, Wan ZongShun, ac100,
devel, Kukjin Kim, Russell King, Herbert Xu,
Florian Tobias Schandinat, Rafael J. Wysocki, cpufreq,
Eduardo Valentin <eduardo.v
On 05/16/2013 05:15 AM, Wolfram Sang wrote:
> Lately, I have been experimenting how to improve the devm interface to make
> writing device drivers easier and less error prone while also getting rid of
> its subtle issues. I think it has more potential but still needs work and
> definately conistency, especiall in its usage.
...
The Tegra parts in patches 4, 5, 8, 15, 16, 17, 29 all,
Acked-by: Stephen Warren <swarren@nvidia.com>
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 00/33] devm improvement series, part 1, take 2
2013-05-16 11:15 [PATCH 00/33] devm improvement series, part 1, take 2 Wolfram Sang
` (2 preceding siblings ...)
2013-05-16 18:29 ` Stephen Warren
@ 2013-05-23 20:32 ` Thierry Reding
3 siblings, 0 replies; 10+ messages in thread
From: Thierry Reding @ 2013-05-23 20:32 UTC (permalink / raw)
To: Wolfram Sang
Cc: linux-mips, alsa-devel, linux-usb, Liam Girdwood,
Alexander Shishkin, Viresh Kumar, Linus Walleij, Matt Mackall,
linux-fbdev, dri-devel, Jaroslav Kysela, linux-ide, netdev,
linux-mtd, linux-i2c, Evgeniy Polyakov, Wan ZongShun, ac100,
devel, Kukjin Kim, Russell King, Herbert Xu,
Florian Tobias Schandinat, Stephen Warren, Rafael J. Wysocki,
cpufreq
[-- Attachment #1.1: Type: text/plain, Size: 1291 bytes --]
On Thu, May 16, 2013 at 01:15:28PM +0200, Wolfram Sang wrote:
> Lately, I have been experimenting how to improve the devm interface to make
> writing device drivers easier and less error prone while also getting rid of
> its subtle issues. I think it has more potential but still needs work and
> definately conistency, especiall in its usage.
>
> The first thing I come up with is a low hanging fruit regarding
> devm_ioremap_resouce(). This function already checks if the passed resource is
> valid and gives an error message if not. So, we can remove similar checks from
> the drivers and get rid of a bit of code and a number of inconsistent error
> strings.
Sorry for jumping in so late. I generally like the idea. One small
inconvenience is that devm_ioremap_resource() returns -EINVAL if
res == NULL, which means that drivers will now also return -EINVAL
in cases where no resource was returned. Typically drivers handle
this by returning something like -ENODEV, -ENXIO, -ENOENT. Some do
return -EINVAL but perhaps having a separate error code (and maybe
error message as well) for a missing resource would be helpful.
Doing this would be rather easy now that you've paved the way by
making devm_ioremap_resource() usage consistent across drivers.
Thierry
[-- Attachment #1.2: Type: application/pgp-signature, Size: 836 bytes --]
[-- Attachment #2: Type: text/plain, Size: 159 bytes --]
_______________________________________________
devel mailing list
devel@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/devel
^ permalink raw reply [flat|nested] 10+ messages in thread