mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] driver core: device_rename's new_name can be const
@ 2010-08-05 15:38 Johannes Berg
  2010-08-05 18:03 ` Greg KH
  0 siblings, 1 reply; 2+ messages in thread
From: Johannes Berg @ 2010-08-05 15:38 UTC (permalink / raw)
  To: Greg Kroah-Hartman; +Cc: linux-kernel

The new_name argument to device_rename() can be
const as kobject_rename's new_name argument is.

Signed-off-by: Johannes Berg <johannes.berg@intel.com>
---
I have a patch that I would like to push into the wireless tree for .37
that relies on this to not generate a compiler warning, it would be nice
if this could get into .36 but I don't know if that's possible now.

 drivers/base/core.c    |    2 +-
 include/linux/device.h |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

--- wireless-testing.orig/drivers/base/core.c	2010-08-05 17:34:14.000000000 +0200
+++ wireless-testing/drivers/base/core.c	2010-08-05 17:34:20.000000000 +0200
@@ -1599,7 +1599,7 @@ EXPORT_SYMBOL_GPL(device_destroy);
  * on the same device to ensure that new_name is valid and
  * won't conflict with other devices.
  */
-int device_rename(struct device *dev, char *new_name)
+int device_rename(struct device *dev, const char *new_name)
 {
 	char *old_class_name = NULL;
 	char *new_class_name = NULL;
--- wireless-testing.orig/include/linux/device.h	2010-08-05 17:34:01.000000000 +0200
+++ wireless-testing/include/linux/device.h	2010-08-05 17:34:09.000000000 +0200
@@ -551,7 +551,7 @@ extern int device_for_each_child(struct
 		     int (*fn)(struct device *dev, void *data));
 extern struct device *device_find_child(struct device *dev, void *data,
 				int (*match)(struct device *dev, void *data));
-extern int device_rename(struct device *dev, char *new_name);
+extern int device_rename(struct device *dev, const char *new_name);
 extern int device_move(struct device *dev, struct device *new_parent,
 		       enum dpm_order dpm_order);
 extern const char *device_get_devnode(struct device *dev,



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

* Re: [PATCH] driver core: device_rename's new_name can be const
  2010-08-05 15:38 [PATCH] driver core: device_rename's new_name can be const Johannes Berg
@ 2010-08-05 18:03 ` Greg KH
  0 siblings, 0 replies; 2+ messages in thread
From: Greg KH @ 2010-08-05 18:03 UTC (permalink / raw)
  To: Johannes Berg; +Cc: Greg Kroah-Hartman, linux-kernel

On Thu, Aug 05, 2010 at 05:38:18PM +0200, Johannes Berg wrote:
> The new_name argument to device_rename() can be
> const as kobject_rename's new_name argument is.
> 
> Signed-off-by: Johannes Berg <johannes.berg@intel.com>
> ---
> I have a patch that I would like to push into the wireless tree for .37
> that relies on this to not generate a compiler warning, it would be nice
> if this could get into .36 but I don't know if that's possible now.

Yes, it's simple enough for me to get into this merge.

thanks,

greg k-h

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

end of thread, other threads:[~2010-08-05 18:05 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-08-05 15:38 [PATCH] driver core: device_rename's new_name can be const Johannes Berg
2010-08-05 18:03 ` Greg KH

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome