diff options
author | Ville Syrjälä <syrjala@sci.fi> | 2005-11-07 04:00:59 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-11-07 10:53:54 -0500 |
commit | 5ea8d9d0384761251db10ecce7618f84b67d50d4 (patch) | |
tree | 692280b43b942a0ddda88a780c2dfcee892f921f | |
parent | 6c12f30554f29069afd485ecd05a1d54c8aece9f (diff) |
[PATCH] matroxfb: Kill a useless message
No point in spamming the logs with a message about xres rounding.
Signed-off-by: Ville Syrjälä <syrjala@sci.fi>
Signed-off-by: Petr Vandrovec <petr@vandrovec.name>
Cc: "Antonino A. Daplas" <adaplas@pol.net>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-rw-r--r-- | drivers/video/matrox/matroxfb_base.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/drivers/video/matrox/matroxfb_base.c b/drivers/video/matrox/matroxfb_base.c index a780bb30ffc0..1e74f4cca53b 100644 --- a/drivers/video/matrox/matroxfb_base.c +++ b/drivers/video/matrox/matroxfb_base.c | |||
@@ -498,10 +498,6 @@ static int matroxfb_pitch_adjust(CPMINFO int xres, int bpp) { | |||
498 | } else { | 498 | } else { |
499 | xres_new = matroxfb_test_and_set_rounding(PMINFO xres, bpp); | 499 | xres_new = matroxfb_test_and_set_rounding(PMINFO xres, bpp); |
500 | } | 500 | } |
501 | if (!xres_new) return 0; | ||
502 | if (xres != xres_new) { | ||
503 | printk(KERN_INFO "matroxfb: cannot set xres to %d, rounded up to %d\n", xres, xres_new); | ||
504 | } | ||
505 | return xres_new; | 501 | return xres_new; |
506 | } | 502 | } |
507 | 503 | ||