You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
773 B
34 lines
773 B
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef BSG_H
|
|
#define BSG_H
|
|
|
|
#include <uapi/linux/bsg.h>
|
|
|
|
|
|
#if defined(CONFIG_BLK_DEV_BSG)
|
|
struct bsg_class_device {
|
|
struct device *class_dev;
|
|
struct device *parent;
|
|
int minor;
|
|
struct request_queue *queue;
|
|
struct kref ref;
|
|
void (*release)(struct device *);
|
|
};
|
|
|
|
extern int bsg_register_queue(struct request_queue *q,
|
|
struct device *parent, const char *name,
|
|
void (*release)(struct device *));
|
|
extern void bsg_unregister_queue(struct request_queue *);
|
|
#else
|
|
static inline int bsg_register_queue(struct request_queue *q,
|
|
struct device *parent, const char *name,
|
|
void (*release)(struct device *))
|
|
{
|
|
return 0;
|
|
}
|
|
static inline void bsg_unregister_queue(struct request_queue *q)
|
|
{
|
|
}
|
|
#endif
|
|
|
|
#endif
|
|
|