aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/include
diff options
context:
space:
mode:
authorAdrian Bunk <bunk@kernel.org>2008-10-18 20:28:47 -0700
committerLinus Torvalds <torvalds@linux-foundation.org>2008-10-20 08:52:41 -0700
commita0098efd6ee4e8c04d82d761aa1bb9ec7a0aa32d (patch)
treeaeba7aa1a577730bc355feb7e9f34b3c237c9a60 /include
parentdrivers/scsi/sr_vendor.c: use bcd2bin (diff)
downloadwireguard-linux-a0098efd6ee4e8c04d82d761aa1bb9ec7a0aa32d.tar.xz
wireguard-linux-a0098efd6ee4e8c04d82d761aa1bb9ec7a0aa32d.zip
remove the obsolete BCD*BIN/BIN*BCD macros
Remove the following obsolete macros: - BCD2BIN - BIN2BCD - BCD_TO_BIN - BIN_TO_BCD Signed-off-by: Adrian Bunk <bunk@kernel.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include')
-rw-r--r--include/linux/bcd.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/include/linux/bcd.h b/include/linux/bcd.h
index 7ac518e3c152..75f6d6e699a0 100644
--- a/include/linux/bcd.h
+++ b/include/linux/bcd.h
@@ -15,11 +15,4 @@
unsigned bcd2bin(unsigned char val) __attribute_const__;
unsigned char bin2bcd(unsigned val) __attribute_const__;
-#define BCD2BIN(val) bcd2bin(val)
-#define BIN2BCD(val) bin2bcd(val)
-
-/* backwards compat */
-#define BCD_TO_BIN(val) ((val)=BCD2BIN(val))
-#define BIN_TO_BCD(val) ((val)=BIN2BCD(val))
-
#endif /* _BCD_H */