Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 50457905 authored by Ingo Molnar's avatar Ingo Molnar Committed by Linus Torvalds
Browse files

isdn: hysdn_procconf.c build fix

x86.git randconfig testing found the following build error in latest
-git:

  CC [M]  drivers/isdn/hysdn/hysdn_procconf.o
  CC [M]  drivers/isdn/hysdn/hysdn_init.o
  drivers/isdn/hysdn/hysdn_procconf.c: In function 'hysdn_procconf_init':
  drivers/isdn/hysdn/hysdn_procconf.c:408: error: too few arguments to function 'proc_create'

with the following config:

  http://redhat.com/~mingo/misc/config-Wed_Apr_30_15_12_48_CEST_2008.bad



Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
Cc: "Denis V. Lunev" <den@openvz.org>
Cc: Karsten Keil <kkeil@suse.de>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 3e3a7d66
Loading
Loading
Loading
Loading
+2 −1
Original line number Original line Diff line number Diff line
@@ -405,7 +405,8 @@ hysdn_procconf_init(void)
		sprintf(conf_name, "%s%d", PROC_CONF_BASENAME, card->myid);
		sprintf(conf_name, "%s%d", PROC_CONF_BASENAME, card->myid);
		if ((card->procconf = (void *) proc_create(conf_name,
		if ((card->procconf = (void *) proc_create(conf_name,
						S_IFREG | S_IRUGO | S_IWUSR,
						S_IFREG | S_IRUGO | S_IWUSR,
						hysdn_proc_entry)) != NULL) {
						hysdn_proc_entry,
						&conf_fops)) != NULL) {
			hysdn_proclog_init(card);	/* init the log file entry */
			hysdn_proclog_init(card);	/* init the log file entry */
		}
		}
		card = card->next;	/* next entry */
		card = card->next;	/* next entry */