From: "Alexey Klimov" <klimov.linux@gmail.com>
To: "Oliver Neukum" <oliver@neukum.org>
Cc: dbrownell@users.sourceforge.net, davem@davemloft.net,
"Greg KH" <greg@kroah.com>,
netdev@vger.kernel.org, linux-usb@vger.kernel.org
Subject: Re: [patch v2] net/usb: remove err() messages in few drivers
Date: Tue, 13 Jan 2009 11:57:12 +0300 [thread overview]
Message-ID: <208cbae30901130057r2b3396f4gb5abdedd5647739c@mail.gmail.com> (raw)
In-Reply-To: <200901130940.28478.oliver@neukum.org>
On Tue, Jan 13, 2009 at 11:40 AM, Oliver Neukum <oliver@neukum.org> wrote:
> Am Tuesday 13 January 2009 01:08:42 schrieb Alexey Klimov:
>> @@ -675,7 +677,7 @@ static int kaweth_open(struct net_device *net)
>>
>> res = usb_autopm_get_interface(kaweth->intf);
>> if (res) {
>> - err("Interface cannot be resumed.");
>> + dev_err(&net->dev, "Interface cannot be resumed.\n");
>> return -EIO;
>> }
>> res = kaweth_resubmit_rx_urb(kaweth, GFP_KERNEL);
>> @@ -902,7 +904,7 @@ static void kaweth_async_set_rx_mode(struct kaweth_device *kaweth)
>> KAWETH_CONTROL_TIMEOUT);
>>
>> if(result < 0) {
>> - err("Failed to set Rx mode: %d", result);
>> + dev_err(&kaweth->dev->dev, "Failed to set Rx mode: %d\n", result);
>> }
>> else {
>> dbg("Set Rx mode to %d", packet_filter_bitmap);
>> @@ -1038,7 +1040,7 @@ static int kaweth_probe(
>> "kaweth/new_code.bin",
>> 100,
>> 2)) < 0) {
>> - err("Error downloading firmware (%d)", result);
>> + dev_err(&intf->dev, "Error downloading firmware (%d)\n", result);
>
> I have to veto this. You are using three different device structures
> to refer to the same device. That will make it next to impossible to
> find out which device originated a message.
>
> Regards
> Oliver
Ok, i'll reformat patch. Is it okay if i use kaweth->dev->dev,
kaweth->net->dev and intf->dev ? Or switch to kaweth->net->dev
(instead of dev->dev)?
--
Best regards, Klimov Alexey
next prev parent reply other threads:[~2009-01-13 8:57 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-01-13 0:08 [patch v2] net/usb: remove err() messages in few drivers Alexey Klimov
[not found] ` <1231805322.12962.4.camel-XMdqyYT0w3Zyw3qLyVIJKA@public.gmane.org>
2009-01-13 8:40 ` Oliver Neukum
2009-01-13 8:57 ` Alexey Klimov [this message]
2009-01-13 9:25 ` Oliver Neukum
[not found] ` <200901131025.40285.oliver-GvhC2dPhHPQdnm+yROfE0A@public.gmane.org>
2009-01-13 9:44 ` David Brownell
2009-01-13 10:08 ` Alexey Klimov
2009-01-13 11:07 ` Oliver Neukum
[not found] ` <200901131207.03724.oliver-GvhC2dPhHPQdnm+yROfE0A@public.gmane.org>
2009-01-14 0:22 ` Alexey Klimov
[not found] ` <208cbae30901131622heccfee6uf312022ba1d4fb28-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2009-01-14 1:05 ` David Brownell
2009-01-14 8:09 ` Oliver Neukum
2009-01-13 9:46 ` David Brownell
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=208cbae30901130057r2b3396f4gb5abdedd5647739c@mail.gmail.com \
--to=klimov.linux@gmail.com \
--cc=davem@davemloft.net \
--cc=dbrownell@users.sourceforge.net \
--cc=greg@kroah.com \
--cc=linux-usb@vger.kernel.org \
--cc=netdev@vger.kernel.org \
--cc=oliver@neukum.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).