Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=c36befb52350fa76bf3cb03d13ba2e17dbe8a508
Commit:     c36befb52350fa76bf3cb03d13ba2e17dbe8a508
Parent:     71e27da9618b5f4d525ec821def83991da20429f
Author:     Ivo van Doorn <[EMAIL PROTECTED]>
AuthorDate: Tue Jun 5 00:04:46 2007 -0700
Committer:  David S. Miller <[EMAIL PROTECTED]>
CommitDate: Thu Jun 7 13:39:34 2007 -0700

    [RFKILL]: Make rfkill->name const
    
    The rfkill name can be made const safely,
    this makes the compiler happy when drivers make
    it point to some const string used elsewhere.
    
    Signed-off-by: Ivo van Doorn <[EMAIL PROTECTED]>
    Signed-off-by: David S. Miller <[EMAIL PROTECTED]>
---
 include/linux/rfkill.h |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/include/linux/rfkill.h b/include/linux/rfkill.h
index 7c1ffba..a8a6ea8 100644
--- a/include/linux/rfkill.h
+++ b/include/linux/rfkill.h
@@ -63,7 +63,7 @@ enum rfkill_state {
  * This structure represents a RF switch located on a network device.
  */
 struct rfkill {
-       char *name;
+       const char *name;
        enum rfkill_type type;
 
        enum rfkill_state state;
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to