<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 TRANSITIONAL//EN">
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; CHARSET=UTF-8">
<META NAME="GENERATOR" CONTENT="GtkHTML/3.28.3">
</HEAD>
<BODY>
<!--+GtkHTML:<DATA class="ClueFlow" key="orig" value="0">-->Is this the correct maillist to post things about xf86-video-nouveau?<BR>
<BR>
This is my first nouveau patch, since I had a laptop with a GeForce 9300M GS card, I will play with it now.<BR>
<BR>
This patch is just clean and simplified of codes.<BR>
<BR>
---<BR>
src/nv_driver.c | 9 +--------<BR>
1 files changed, 1 insertions(+), 8 deletions(-)<BR>
<BR>
diff --git a/src/nv_driver.c b/src/nv_driver.c<BR>
index 4b00e3d..06bf160 100644<BR>
--- a/src/nv_driver.c<BR>
+++ b/src/nv_driver.c<BR>
@@ -182,14 +182,7 @@ NVIdentify(int flags)<BR>
family = NVKnownFamilies;<BR>
while(family->name && family->chipset)<BR>
{<BR>
- size_t len = strlen(family->name);<BR>
- xf86ErrorF("\t%s", family->name);<BR>
- while(len<maxLen+1)<BR>
- {<BR>
- xf86ErrorF(" ");<BR>
- len++;<BR>
- }<BR>
- xf86ErrorF("(%s)\n", family->chipset);<BR>
+ xf86ErrorF("\t%-*s (%s)\n", maxLen, family->name, family->chipset);<BR>
family++;<BR>
}<BR>
}<BR>
-- <BR>
1.6.4.GIT<BR>
<BR>
<BR>
<BR>
<BR>
</BODY>
</HTML>