* [PATCH] i2c: Sanity checks on adapter registration
@ 2010-11-05 12:42 Jean Delvare
0 siblings, 0 replies; only message in thread
From: Jean Delvare @ 2010-11-05 12:42 UTC (permalink / raw)
To: Linux I2C; +Cc: Randy Dunlap
Make sure I2C adapters being registered have the required struct
fields set. If they don't, problems will happen later.
Signed-off-by: Jean Delvare <khali-PUYAD+kWke1g9hUCZPvPmw@public.gmane.org>
---
Randy, please apply this patch and check if it catches anything.
drivers/i2c/i2c-core.c | 15 +++++++++++++++
1 file changed, 15 insertions(+)
--- linux-2.6.37-rc1.orig/drivers/i2c/i2c-core.c 2010-11-05 11:37:34.000000000 +0100
+++ linux-2.6.37-rc1/drivers/i2c/i2c-core.c 2010-11-05 11:54:34.000000000 +0100
@@ -848,6 +848,21 @@ static int i2c_register_adapter(struct i
goto out_list;
}
+ /* Sanity checks */
+ if (adap->name[0] == '\0') {
+ pr_err("i2c-core: Attempt to register an adapter with "
+ "no name!\n");
+ return -EINVAL;
+ }
+ if (!adap->algo) {
+ pr_err("i2c-core: Attempt to register adapter '%s' with "
+ "no algo!\n", adap->name);
+ return -EINVAL;
+ }
+ if (!adap->owner)
+ pr_warn("i2c-core: Attempt to register adapter '%s' with "
+ "no owner!\n", adap->name);
+
rt_mutex_init(&adap->bus_lock);
mutex_init(&adap->userspace_clients_lock);
INIT_LIST_HEAD(&adap->userspace_clients);
--
Jean Delvare
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2010-11-05 12:42 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-11-05 12:42 [PATCH] i2c: Sanity checks on adapter registration Jean Delvare
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox