Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=4cf0723ac89b5f2189da2ad07ef875de26b83c77
Commit:     4cf0723ac89b5f2189da2ad07ef875de26b83c77
Parent:     292b7f27129272c9ec0ee5fa56abb6f9061b1d83
Author:     FUJITA Tomonori <[EMAIL PROTECTED]>
AuthorDate: Fri Mar 30 11:19:39 2007 +0200
Committer:  Jens Axboe <[EMAIL PROTECTED]>
CommitDate: Mon Jul 16 08:52:46 2007 +0200

    bsg: minor bug fixes
    
    This fixes the following minor issues:
    
    - add EXPORT_SYMBOL_GPL for bsg_register_queue and
    bsg_unregister_queue.
    
    - shut up gcc warnings
    
    Signed-off-by: FUJITA Tomonori <[EMAIL PROTECTED]>
    Signed-off-by: Jens Axboe <[EMAIL PROTECTED]>
---
 block/bsg.c         |    4 +++-
 include/linux/bsg.h |    2 +-
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/block/bsg.c b/block/bsg.c
index 4ef3cc5..a333c93 100644
--- a/block/bsg.c
+++ b/block/bsg.c
@@ -961,8 +961,9 @@ void bsg_unregister_queue(struct request_queue *q)
        bsg_device_nr--;
        mutex_unlock(&bsg_mutex);
 }
+EXPORT_SYMBOL_GPL(bsg_unregister_queue);
 
-int bsg_register_queue(struct request_queue *q, char *name)
+int bsg_register_queue(struct request_queue *q, const char *name)
 {
        struct bsg_class_device *bcd, *__bcd;
        dev_t dev;
@@ -1025,6 +1026,7 @@ err:
        mutex_unlock(&bsg_mutex);
        return ret;
 }
+EXPORT_SYMBOL_GPL(bsg_register_queue);
 
 static int bsg_add(struct class_device *cl_dev, struct class_interface 
*cl_intf)
 {
diff --git a/include/linux/bsg.h b/include/linux/bsg.h
index 0475a6d..0dd01f9 100644
--- a/include/linux/bsg.h
+++ b/include/linux/bsg.h
@@ -51,7 +51,7 @@ struct bsg_class_device {
        struct request_queue *queue;
 };
 
-extern int bsg_register_queue(struct request_queue *, char *);
+extern int bsg_register_queue(struct request_queue *, const char *);
 extern void bsg_unregister_queue(struct request_queue *);
 #else
 struct bsg_class_device { };
-
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