From: Frank Davis <fdavis112@juno.com>
To: torvalds@transmeta.com
Cc: linux-kernel@vger.kernel.org
Subject: [PATCH]test12-pre8 i2o_lan.c
Date: Sun, 10 Dec 2000 18:57:18 -0500 (EST) [thread overview]
Message-ID: <386943387.976492639239.JavaMail.root@web395-wra.mail.com> (raw)
Hello,
I just downloaded test12-pre8 from ftp.kernel.org and received the following error, as I did in the old test12-pre8. The following error appears to fix the problem.
Regards,
Frank
i2o_lan.c:116: warning: initialization makes integer from pointer
without a cast
i2o_lan.c:1404: structure has no member named 'next'
make[2]: *** [i2o_lan.o] Error 1
make[2]: *** Leaving directory '/usr/src/linux/drivers/i2o
--- drivers/i2o/i2o_lan.c.old Sun Dec 10 18:02:22 2000
+++ drivers/i2o/i2o_lan.c Sun Dec 10 18:35:01 2000
@@ -1401,7 +1401,7 @@
atomic_set(&priv->tx_out, 0);
priv->tx_count = 0;
- priv->i2o_batch_send_task.next = NULL;
+ INIT_LIST_HEAD(&priv->i2o_batch_send_task.list);
priv->i2o_batch_send_task.sync = 0;
priv->i2o_batch_send_task.routine = (void *)i2o_lan_batch_send;
priv->i2o_batch_send_task.data = (void *)dev;
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/
reply other threads:[~2000-12-11 0:28 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
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=386943387.976492639239.JavaMail.root@web395-wra.mail.com \
--to=fdavis112@juno.com \
--cc=linux-kernel@vger.kernel.org \
--cc=torvalds@transmeta.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 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.