* Beech LCD patch
@ 2002-08-12 0:42 David Gibson
2002-08-12 19:07 ` Tom Rini
0 siblings, 1 reply; 2+ messages in thread
From: David Gibson @ 2002-08-12 0:42 UTC (permalink / raw)
To: linuxppc-embedded
Could somebody please commit the following patch to
linuxppc_2_4_devel. It fixes a bug in the Beech/405LP LCD driver.
I'd commit it myself, except me doing a push seems to break the tree
at the moment.
diff -ruN linux.orig/drivers/video/ibmlcdfb.c linux/drivers/video/ibmlcdfb.c
--- linux.orig/drivers/video/ibmlcdfb.c Fri Aug 9 19:16:04 2002
+++ linux/drivers/video/ibmlcdfb.c Fri Aug 9 19:15:51 2002
@@ -1218,7 +1218,8 @@
int ncolors;
const struct ibmlcdfb_info *info = (struct ibmlcdfb_info *) inf;
- ncolors = 1 << bpp_from_par(info->gen.info.par);
+ ncolors = bpp_from_par(info->gen.info.par);
+
if (regno >= ncolors)
return -EINVAL;
@@ -1249,7 +1250,8 @@
int ncolors;
struct ibmlcdfb_info *info = (struct ibmlcdfb_info *) inf;
- ncolors = 1 << bpp_from_par(info->gen.info.par);
+ ncolors = bpp_from_par(info->gen.info.par);
+
if (regno >= ncolors)
return -EINVAL;
--
David Gibson | For every complex problem there is a
david@gibson.dropbear.id.au | solution which is simple, neat and
| wrong.
http://www.ozlabs.org/people/dgibson
** Sent via the linuxppc-embedded mail list. See http://lists.linuxppc.org/
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2002-08-12 19:07 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-08-12 0:42 Beech LCD patch David Gibson
2002-08-12 19:07 ` Tom Rini
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).