From: "Randy Dunlap" <rdunlap@xenotime.net>
To: Andy Fleming <afleming@freescale.com>,
Francois Romieu <romieu@fr.zoreil.com>,
Netdev <netdev@vger.kernel.org>,
linuxppc-embedded <linuxppc-embedded@ozlabs.org>
Subject: Re: [RFC PATCH 1/4] PHY Abstraction Layer III (now with more splitiness)
Date: Wed, 27 Jul 2005 11:08:28 -0700 [thread overview]
Message-ID: <1122487708.20267@shark.he.net> (raw)
> On Jul 25, 2005, at 16:06, Francois Romieu wrote:
>
>
> >> +int mdiobus_register(struct mii_bus *bus)
> >> +{
> >> + int i;
> >> + int err = 0;
> >> +
> >> + spin_lock_init(&bus->mdio_lock);
> >> +
> >> + if (NULL == bus || NULL == bus->name ||
> >> + NULL == bus->read ||
> >> + NULL == bus->write)
> >>
> >
> > Be spartan:
> > if (!bus || !bus->name || !bus->read || !bus->write)
>
>
> I think we have to agree to disagree here. I could be convinced, but
> I'm partial to using NULL explicitly.
But there are 2 issues here (at least). One is to use NULL or
not. The other is using (constant == var) or (var == constant).
It's not described in CodingStlye afaik, but most recent email
on the subject strongly prefers (var == constant) [in my
unscientific survey -- of bits in my head].
So using the suggested style will fix both of these. :)
> >> + /* Otherwise, we allocate the device, and initialize the
> >> + * default values */
> >> + dev = kmalloc(sizeof(*dev), GFP_KERNEL);
> >> +
> >> + if (NULL == dev) {
> >> + errno = -ENOMEM;
> >> + return NULL;
> >> + }
> >> +
> >> + memset(dev, 0, sizeof(*dev));
> >>
> >
> > The kernel provides kcalloc.
>
>
> I went looking for it, and found it in fs/cifs/misc.c. I'm hesitant
> to link to a function defined in the filesystem code just to save 1
> line of code
It's more global than that.
~Randy
next reply other threads:[~2005-07-27 18:08 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-07-27 18:08 Randy Dunlap [this message]
2005-07-27 18:46 ` [RFC PATCH 1/4] PHY Abstraction Layer III (now with more splitiness) Andy Fleming
2005-07-27 19:56 ` Francois Romieu
-- strict thread matches above, loose matches on Subject: below --
2005-07-27 21:34 Randy Dunlap
2005-07-28 9:18 ` Jörn Engel
2005-07-25 19:47 Andy Fleming
2005-07-25 21:06 ` Francois Romieu
2005-07-27 18:01 ` Andy Fleming
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=1122487708.20267@shark.he.net \
--to=rdunlap@xenotime.net \
--cc=afleming@freescale.com \
--cc=linuxppc-embedded@ozlabs.org \
--cc=netdev@vger.kernel.org \
--cc=romieu@fr.zoreil.com \
/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).