From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:37221) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WN66g-0007xK-Rr for qemu-devel@nongnu.org; Mon, 10 Mar 2014 15:43:33 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WN66a-0005ZE-TS for qemu-devel@nongnu.org; Mon, 10 Mar 2014 15:43:26 -0400 Received: from mx1.redhat.com ([209.132.183.28]:20359) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WN66a-0005Z4-Mi for qemu-devel@nongnu.org; Mon, 10 Mar 2014 15:43:20 -0400 Date: Mon, 10 Mar 2014 21:43:21 +0200 From: "Michael S. Tsirkin" Message-ID: <1394480575-3698-1-git-send-email-mst@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Subject: [Qemu-devel] [PATCH 1/2] bswap.h: export bswap_le List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: peter.maydell@linaro.org it's a handy API for cases where we want to get size in bits as a parameter. Signed-off-by: Michael S. Tsirkin --- include/qemu/bswap.h | 5 ----- 1 file changed, 5 deletions(-) diff --git a/include/qemu/bswap.h b/include/qemu/bswap.h index 0cb7c05..4489ad9 100644 --- a/include/qemu/bswap.h +++ b/include/qemu/bswap.h @@ -423,9 +423,4 @@ static inline unsigned long leul_to_cpu(unsigned long v) #endif } -#undef le_bswap -#undef be_bswap -#undef le_bswaps -#undef be_bswaps - #endif /* BSWAP_H */ -- MST