Skip to content

Commit

Permalink
bsg: minor bug fixes
Browse files Browse the repository at this point in the history
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 <fujita.tomonori@lab.ntt.co.jp>
Signed-off-by: Jens Axboe <axboe@nelson.home.kernel.dk>
  • Loading branch information
FUJITA Tomonori authored and Jens Axboe committed Jul 16, 2007
1 parent 292b7f2 commit 4cf0723
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion block/bsg.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -1025,6 +1026,7 @@ int bsg_register_queue(struct request_queue *q, char *name)
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)
{
Expand Down
2 changes: 1 addition & 1 deletion include/linux/bsg.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 { };
Expand Down

0 comments on commit 4cf0723

Please sign in to comment.