linux-i2c.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] i2c: make i2c_get_adapter prototype clearer
@ 2011-02-17 13:08 Jean Delvare
  0 siblings, 0 replies; only message in thread
From: Jean Delvare @ 2011-02-17 13:08 UTC (permalink / raw)
  To: Linux I2C

Rename the parameter of i2c_get_adapter() to "nr", to make it clear we
are passing an adapter number and not an adapter ID (which have gone
away by now.)

Signed-off-by: Jean Delvare <khali-PUYAD+kWke1g9hUCZPvPmw@public.gmane.org>
---
 drivers/i2c/i2c-core.c |    4 ++--
 include/linux/i2c.h    |    2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

--- linux-2.6.38-rc5.orig/drivers/i2c/i2c-core.c	2011-01-19 14:44:23.000000000 +0100
+++ linux-2.6.38-rc5/drivers/i2c/i2c-core.c	2011-02-17 13:50:32.000000000 +0100
@@ -1583,12 +1583,12 @@ i2c_new_probed_device(struct i2c_adapter
 }
 EXPORT_SYMBOL_GPL(i2c_new_probed_device);
 
-struct i2c_adapter *i2c_get_adapter(int id)
+struct i2c_adapter *i2c_get_adapter(int nr)
 {
 	struct i2c_adapter *adapter;
 
 	mutex_lock(&core_lock);
-	adapter = idr_find(&i2c_adapter_idr, id);
+	adapter = idr_find(&i2c_adapter_idr, nr);
 	if (adapter && !try_module_get(adapter->owner))
 		adapter = NULL;
 
--- linux-2.6.38-rc5.orig/include/linux/i2c.h	2011-02-17 13:49:41.000000000 +0100
+++ linux-2.6.38-rc5/include/linux/i2c.h	2011-02-17 13:50:16.000000000 +0100
@@ -448,7 +448,7 @@ extern void i2c_release_client(struct i2
 extern void i2c_clients_command(struct i2c_adapter *adap,
 				unsigned int cmd, void *arg);
 
-extern struct i2c_adapter *i2c_get_adapter(int id);
+extern struct i2c_adapter *i2c_get_adapter(int nr);
 extern void i2c_put_adapter(struct i2c_adapter *adap);
 
 


-- 
Jean Delvare

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2011-02-17 13:08 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-02-17 13:08 [PATCH] i2c: make i2c_get_adapter prototype clearer Jean Delvare

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).