From: Evgeniy Polyakov <johnpol@2ka.mipt.ru>
To: Miles Lane <miles@megapathdsl.net>
Cc: linux-kernel@vger.kernel.org
Subject: Re: 2.5.3-pre5 -- "pcilynx.c:638: invalid operands to binary &" and "pcilynx.c:650: `cards' undeclared"
Date: Fri, 25 Jan 2002 12:37:11 +0300 [thread overview]
Message-ID: <20020125123711.0f0ebc61.johnpol@2ka.mipt.ru> (raw)
In-Reply-To: <1011932306.18088.162.camel@stomata.megapathdsl.net>
In-Reply-To: <1011932306.18088.162.camel@stomata.megapathdsl.net>
[-- Attachment #1: Type: text/plain, Size: 1080 bytes --]
On 24 Jan 2002 20:18:26 -0800
Miles Lane <miles@megapathdsl.net> wrote:
>
> ld -m elf_i386 -r -o ieee1394.o ieee1394_core.o ieee1394_transactions.o
> hosts.o highlevel.o csr.o nodemgr.o
> gcc -D__KERNEL__ -I/usr/src/linux/include -Wall -Wstrict-prototypes
> -Wno-trigraphs -O2 -fomit-frame-pointer -fno-strict-aliasing -fno-common
> -pipe -mpreferred-stack-boundary=2 -march=athlon -DMODULE -c -o
> pcilynx.o pcilynx.c
> pcilynx.c: In function `mem_open':
> pcilynx.c:638: invalid operands to binary &
> pcilynx.c:650: `num_of_cards' undeclared (first use in this function)
> pcilynx.c:650: (Each undeclared identifier is reported only once
> pcilynx.c:650: for each function it appears in.)
> pcilynx.c:650: `cards' undeclared (first use in this function)
> pcilynx.c: In function `aux_poll':
> pcilynx.c:721: `cards' undeclared (first use in this function)
Have you tried this patch?
Please apply and check if errors occure again.
And of course tell us about process.
Thanks.
btw, Dave Jones has fixed it in his tree, try to look into it.
Evgeniy Polyakov ( s0mbre ).
[-- Attachment #2: ieee1394_pcilynx.patch --]
[-- Type: application/octet-stream, Size: 802 bytes --]
--- /tmp/pcilynx.c Wed Jan 23 05:54:38 2002
+++ ./pcilynx.c Wed Jan 23 06:49:50 2002
@@ -55,9 +55,15 @@
#define PRINTD(level, card, fmt, args...) do {} while (0)
#endif
+#define MAX_NUM_OF_CARDS 10 /*
+ * How do you think,
+ * can anyone has such amount of cards
+ * in one computer?
+ */
static struct hpsb_host_driver *lynx_driver;
-static unsigned int card_id;
+static unsigned int card_id, num_of_cards;
+struct ti_lynx cards[MAX_NUM_OF_CARDS];
/*
* PCL handling functions.
@@ -1509,6 +1515,11 @@
hpsb_add_host(host);
lynx->state = is_host;
+
+ if (num_of_cards < MAX_NUM_OF_CARDS)
+ cards[num_of_cards++] = host->hostdata;
+ else
+ FAIL("Too many cards[ %d ]... Impossible...\n", num_of_cards);
return 0;
#undef FAIL
next prev parent reply other threads:[~2002-01-25 9:37 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2002-01-25 4:18 Miles Lane
2002-01-25 9:37 ` Evgeniy Polyakov [this message]
2002-01-26 1:20 ` Evgeniy Polyakov
2002-01-25 17:30 ` Miles Lane
2002-01-26 1:25 ` Evgeniy Polyakov
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=20020125123711.0f0ebc61.johnpol@2ka.mipt.ru \
--to=johnpol@2ka.mipt.ru \
--cc=linux-kernel@vger.kernel.org \
--cc=miles@megapathdsl.net \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome