All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] viafb: fix viafb_find_i2c_adapt return value
@ 2010-12-20 19:16 Dzianis Kahanovich
  2010-12-29  1:26 ` Florian Tobias Schandinat
  2011-01-04 11:16 ` Dzianis Kahanovich
  0 siblings, 2 replies; 3+ messages in thread
From: Dzianis Kahanovich @ 2010-12-20 19:16 UTC (permalink / raw)
  To: linux-fbdev

viafb_find_i2c_adapt return unverifyed value, "is_active" field still uplevel.
Fix it.

Signed-off-by: Dzianis Kahanovich <mahatma@eu.by>
---
--- a/drivers/video/via/via_i2c.c	2010-12-18 06:42:37.000000000 +0200
+++ b/drivers/video/via/via_i2c.c	2010-12-20 19:55:17.000000000 +0200
@@ -188,7 +188,7 @@ struct i2c_adapter *viafb_find_i2c_adapt
 {
 	struct via_i2c_stuff *stuff = &via_i2c_par[which];

-	return &stuff->adapter;
+	return stuff->is_active ? &stuff->adapter : NULL;
 }
 EXPORT_SYMBOL_GPL(viafb_find_i2c_adapter);

--


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2011-01-04 11:16 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-12-20 19:16 [PATCH] viafb: fix viafb_find_i2c_adapt return value Dzianis Kahanovich
2010-12-29  1:26 ` Florian Tobias Schandinat
2011-01-04 11:16 ` Dzianis Kahanovich

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.