diff options
author | Kent Overstreet <kent.overstreet@gmail.com> | 2017-03-19 15:56:34 -0800 |
---|---|---|
committer | Kent Overstreet <kent.overstreet@gmail.com> | 2017-03-19 17:31:47 -0800 |
commit | 5ec39af8eaba49aee7bafa44c661da39e2f40dc3 (patch) | |
tree | 1fb1a981602cbf22c7d2b2dba1168c715d7cecb5 /libbcache/chardev.h | |
parent | bb1941de5378a7b8122d3575dcbc7d0aeb6326f0 (diff) |
Rename from bcache-tools to bcachefs-tools
Diffstat (limited to 'libbcache/chardev.h')
-rw-r--r-- | libbcache/chardev.h | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/libbcache/chardev.h b/libbcache/chardev.h deleted file mode 100644 index 61a4c2b5..00000000 --- a/libbcache/chardev.h +++ /dev/null @@ -1,30 +0,0 @@ -#ifndef _BCACHE_CHARDEV_H -#define _BCACHE_CHARDEV_H - -#ifndef NO_BCACHE_CHARDEV - -long bch_fs_ioctl(struct bch_fs *, unsigned, void __user *); - -void bch_fs_chardev_exit(struct bch_fs *); -int bch_fs_chardev_init(struct bch_fs *); - -void bch_chardev_exit(void); -int __init bch_chardev_init(void); - -#else - -static inline long bch_fs_ioctl(struct bch_fs *c, - unsigned cmd, void __user * arg) -{ - return -ENOSYS; -} - -static inline void bch_fs_chardev_exit(struct bch_fs *c) {} -static inline int bch_fs_chardev_init(struct bch_fs *c) { return 0; } - -static inline void bch_chardev_exit(void) {} -static inline int __init bch_chardev_init(void) { return 0; } - -#endif - -#endif /* _BCACHE_CHARDEV_H */ |