Index: kernel/arch/amd64/include/byteorder.h
===================================================================
--- kernel/arch/amd64/include/byteorder.h	(revision e13daa5d4c1573540f85ba102446af543f3d2c72)
+++ kernel/arch/amd64/include/byteorder.h	(revision 0f718abba99450e9e565ad7ebd5717886bc9f8fd)
@@ -39,7 +39,9 @@
 
 /* AMD64 is little-endian */
+#define uint16_t_le2host(n)		(n)
 #define uint32_t_le2host(n)		(n)
 #define uint64_t_le2host(n)		(n)
 
+#define uint16_t_be2host(n)		uint16_t_byteorder_swap(n)
 #define uint32_t_be2host(n)		uint32_t_byteorder_swap(n)
 #define uint64_t_be2host(n)		uint64_t_byteorder_swap(n)
