From: John Tyner <jtyner@cs.ucr.edu>
To: linuxppc-dev@ozlabs.org
Subject: [PATCH] Fix 8xx compile errors
Date: Mon, 3 Dec 2007 12:58:38 -0800 [thread overview]
Message-ID: <20071203205837.GA22557@cs.ucr.edu> (raw)
[-- Attachment #1: Type: text/plain, Size: 518 bytes --]
Building for 8xx fails to compile due to errors in a couple of places.
The first is due to the casting of an lvalue (if I remember correctly),
and the second was due to the cpmp variable being declared static even
though the headers previously defined it as extern. The following patch
corrects these errors. The patch is against 2.4 since that's what I'm
working with. (I've been unable to get 2.6 to run properly on my
hardware so far.)
Please CC me on any responses since I'm not subscribed.
Thanks,
John
[-- Attachment #2: 8xx_compile.patch --]
[-- Type: text/plain, Size: 1125 bytes --]
diff -ruNa linux-2.4.35.4.orig/arch/ppc/8xx_io/uart.c linux-2.4.35.4/arch/ppc/8xx_io/uart.c
--- linux-2.4.35.4.orig/arch/ppc/8xx_io/uart.c 2007-11-17 09:23:15.000000000 -0800
+++ linux-2.4.35.4/arch/ppc/8xx_io/uart.c 2007-11-27 11:28:09.000000000 -0800
@@ -2292,7 +2292,8 @@
/* Get the address of the host memory buffer.*/
info = &consinfo;
- info->tx_bd_base = (cbd_t *)bdbase = (cbd_t *)&cpmp->cp_dpmem[up->smc_tbase];
+ bdbase = (cbd_t *)&cpmp->cp_dpmem[up->smc_tbase];
+ info->tx_bd_base = (cbd_t *)bdbase;
info->tx_cur = (cbd_t *)bdbase;
}
max_tx_size = console_tx_buf_len;
diff -ruNa linux-2.4.35.4.orig/arch/ppc/boot/simple/m8xx_tty.c linux-2.4.35.4/arch/ppc/boot/simple/m8xx_tty.c
--- linux-2.4.35.4.orig/arch/ppc/boot/simple/m8xx_tty.c 2007-11-17 09:23:15.000000000 -0800
+++ linux-2.4.35.4/arch/ppc/boot/simple/m8xx_tty.c 2007-11-27 11:28:42.000000000 -0800
@@ -30,7 +30,7 @@
#define SMC_INDEX 0
#endif
-static cpm8xx_t *cpmp = (cpm8xx_t *)&(((immap_t *)IMAP_ADDR)->im_cpm);
+cpm8xx_t *cpmp = (cpm8xx_t *)&(((immap_t *)IMAP_ADDR)->im_cpm);
unsigned long
serial_init(int ignored, bd_t *bd)
next reply other threads:[~2007-12-03 20:58 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-12-03 20:58 John Tyner [this message]
2007-12-05 1:09 ` [PATCH] Fix 8xx compile errors Vitaly Bordug
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=20071203205837.GA22557@cs.ucr.edu \
--to=jtyner@cs.ucr.edu \
--cc=linuxppc-dev@ozlabs.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.