aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorColy Li <colyli@suse.de>2020-12-28 16:10:42 +0800
committerColy Li <colyli@suse.de>2021-01-02 00:21:22 +0800
commitd5503bda96efdca8e2ebaa7b3d43845fda4b404d (patch)
tree8ab82891c3835f9a80ebcede29c6fbf35b2a84f8
parent096d205a9f1be8540cbc5a468c0da8203023de70 (diff)
downloadbcache-tools-d5503bda96efdca8e2ebaa7b3d43845fda4b404d.tar.gz
bcache.h: fix typo from SUUP to SUPP
This patch fixes the following typos, from BCH_FEATURE_COMPAT_SUUP to BCH_FEATURE_COMPAT_SUPP from BCH_FEATURE_INCOMPAT_SUUP to BCH_FEATURE_INCOMPAT_SUPP from BCH_FEATURE_INCOMPAT_SUUP to BCH_FEATURE_RO_COMPAT_SUPP Signed-off-by: Coly Li <colyli@suse.de>
-rw-r--r--bcache.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/bcache.h b/bcache.h
index 6aef9c47..50dd2b5c 100644
--- a/bcache.h
+++ b/bcache.h
@@ -200,9 +200,9 @@ uint64_t crc64(const void *data, size_t len);
#define BCH_FEATURE_INCOMPAT 2
#define BCH_FEATURE_TYPE_MASK 0x03
-#define BCH_FEATURE_COMPAT_SUUP 0
-#define BCH_FEATURE_INCOMPAT_SUUP 0
-#define BCH_FEATURE_RO_COMPAT_SUUP 0
+#define BCH_FEATURE_COMPAT_SUPP 0
+#define BCH_FEATURE_INCOMPAT_SUPP 0
+#define BCH_FEATURE_RO_COMPAT_SUPP 0
#define BCH_HAS_COMPAT_FEATURE(sb, mask) \
((sb)->feature_compat & (mask))