From: Stefan Kisdaroczi <kisda@domain.hid>
To: "xenomai@xenomai.org" <xenomai@xenomai.org>
Subject: [Xenomai-help] comedi rtdm_interface.c build fails
Date: Mon, 29 Jun 2009 17:16:44 +0200 [thread overview]
Message-ID: <4A48DADC.7090309@domain.hid> (raw)
[-- Attachment #1.1: Type: text/plain, Size: 702 bytes --]
Hi,
comedi rtdm_interface.c build fails (typo), patch attached.
breaking commit:
Fri, 12 Jun 2009 08:03:39 +0000 (10:03 +0200)
e20bd3f2613a052b93c1a4ecada6623a5332f54c
Made conditional inclusion of owner field in struct proc_dir_entry due to changes in 2.6.30.
Error:
CC [M] drivers/xenomai/comedi/rtdm_interface.o
drivers/xenomai/comedi/rtdm_interface.c: In function "comedi_init_proc":
drivers/xenomai/comedi/rtdm_interface.c:81: error: "enrty" undeclared (first use in this function)
drivers/xenomai/comedi/rtdm_interface.c:81: error: (Each undeclared identifier is reported only once
drivers/xenomai/comedi/rtdm_interface.c:81: error: for each function it appears in.)
[-- Attachment #1.2: xeno_comedi_rtdm.patch --]
[-- Type: text/plain, Size: 744 bytes --]
diff --git a/ksrc/drivers/comedi/rtdm_interface.c b/ksrc/drivers/comedi/rtdm_interface.c
index d4ea5ac..73687b6 100644
--- a/ksrc/drivers/comedi/rtdm_interface.c
+++ b/ksrc/drivers/comedi/rtdm_interface.c
@@ -78,7 +78,7 @@ int comedi_init_proc(void)
entry->data = NULL;
entry->write_proc = NULL;
entry->read_proc = comedi_rdproc_devs;
- wrap_proc_dir_entry_owner(enrty);
+ wrap_proc_dir_entry_owner(entry);
/* Creates the drivers related file */
entry = create_proc_entry("drivers", 0444, comedi_proc_root);
@@ -93,7 +93,7 @@ int comedi_init_proc(void)
entry->data = NULL;
entry->write_proc = NULL;
entry->read_proc = comedi_rdproc_drvs;
- wrap_proc_dir_entry_owner(enrty);
+ wrap_proc_dir_entry_owner(entry);
return 0;
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 250 bytes --]
next reply other threads:[~2009-06-29 15:16 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-06-29 15:16 Stefan Kisdaroczi [this message]
2009-06-29 15:42 ` [Xenomai-core] [Xenomai-help] comedi rtdm_interface.c build fails Philippe Gerum
2009-06-30 6:57 ` Alexis Berlemont
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=4A48DADC.7090309@domain.hid \
--to=kisda@domain.hid \
--cc=xenomai@xenomai.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.