All of lore.kernel.org
 help / color / mirror / Atom feed
From: Dan Carpenter <error27@gmail.com>
To: kernel-janitors@vger.kernel.org
Subject: Re: ERROR: do not initialise externals to 0 or NULL
Date: Mon, 05 Jul 2010 20:45:20 +0000	[thread overview]
Message-ID: <20100705204520.GA19184@bicker> (raw)
In-Reply-To: <1278346615.5396.3.camel@dermezel>

On Mon, Jul 05, 2010 at 10:19:29PM +0200, Joe Eloff wrote:
> Hi Dan,
> 
> Here is the line of code:
> /* Error variable.  Zero means no error. */
> int dt3155_errno = 0;
> 
> no extern results in following error:
> ERROR: do not initialise externals to 0 or NULL
> 
> It is declared in the globals scope at the top of the file just after
> includes not in any function.
> 
> Have no idea why or how to make it go away??

Wouldn't "global" be a better word than "external"?  Anyway, global
variables default to being zero so they don't need to be initialized.

/* Error variable.  Zero means no error. */
int dt3155_errno;

But really this global variable is pretty ugly.  It would be better to
eliminate it.  You would have to modify wait_ibsyclr() somehow...

regards,
dan carpenter



  parent reply	other threads:[~2010-07-05 20:45 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-07-05 16:16 ERROR: do not initialise externals to 0 or NULL Joe Eloff
2010-07-05 19:36 ` Dan Carpenter
2010-07-05 20:03 ` Julia Lawall
2010-07-05 20:19 ` Joe Eloff
2010-07-05 20:45 ` Dan Carpenter [this message]
2010-07-05 20:48 ` Dan Carpenter
2010-07-05 20:53 ` Joe Eloff
2010-07-05 21:13 ` Joe Eloff
2010-07-05 21:17 ` Dan Carpenter
2010-07-05 21:21 ` Joe Eloff

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=20100705204520.GA19184@bicker \
    --to=error27@gmail.com \
    --cc=kernel-janitors@vger.kernel.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.