Skip to content

Commit

Permalink
epca.c: static functions and integer as NULL pointer fixes
Browse files Browse the repository at this point in the history
drivers/char/epca.c:926:28: warning: Using plain integer as NULL pointer
drivers/char/epca.c:1841:2: warning: Using plain integer as NULL pointer

Forward declarations were already marked static, mark the definitions too.
drivers/char/epca.c:2493:6: warning: symbol 'digi_send_break' was not declared. Should it be static?
drivers/char/epca.c:2881:12: warning: symbol 'init_PCI' was not declared. Should it be static?

[akpm@linux-foundation.org: coding-style fixes]
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
  • Loading branch information
Harvey Harrison authored and Linus Torvalds committed Apr 30, 2008
1 parent 1a4e235 commit 11fb09b
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions drivers/char/epca.c
Original file line number Diff line number Diff line change
Expand Up @@ -923,7 +923,8 @@ static int pc_open(struct tty_struct *tty, struct file * filp)
return(-ENODEV);
}

if ((bc = ch->brdchan) == 0) {
bc = ch->brdchan;
if (bc == NULL) {
tty->driver_data = NULL;
return -ENODEV;
}
Expand Down Expand Up @@ -1838,7 +1839,7 @@ static void epcaparam(struct tty_struct *tty, struct channel *ch)
unsigned mval, hflow, cflag, iflag;

bc = ch->brdchan;
epcaassert(bc !=0, "bc out of range");
epcaassert(bc != NULL, "bc out of range");

assertgwinon(ch);
ts = tty->termios;
Expand Down Expand Up @@ -2477,7 +2478,7 @@ static void pc_unthrottle(struct tty_struct *tty)
}
}

void digi_send_break(struct channel *ch, int msec)
static void digi_send_break(struct channel *ch, int msec)
{
unsigned long flags;

Expand Down Expand Up @@ -2865,7 +2866,7 @@ static struct pci_device_id epca_pci_tbl[] = {

MODULE_DEVICE_TABLE(pci, epca_pci_tbl);

int __init init_PCI (void)
static int __init init_PCI(void)
{
memset (&epca_driver, 0, sizeof (epca_driver));
epca_driver.name = "epca";
Expand Down

0 comments on commit 11fb09b

Please sign in to comment.