Index: kernel/arch/amd64/include/byteorder.h
===================================================================
--- kernel/arch/amd64/include/byteorder.h	(revision e13daa5d4c1573540f85ba102446af543f3d2c72)
+++ kernel/arch/amd64/include/byteorder.h	(revision dfa7bac346297f7790a17cd7dd459c2644aba6ef)
@@ -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)
