summaryrefslogtreecommitdiff
path: root/tools/zynqmpbif.c
diff options
context:
space:
mode:
authorBin Meng <bmeng.cn@gmail.com>2019-10-27 05:19:42 -0700
committerTom Rini <trini@konsulko.com>2019-10-28 13:32:51 -0400
commitafd3bf4318b0b3e845b5bc1f6763727229af9179 (patch)
tree303ac8e01ef0055d09d1083219e438bf3eba8f14 /tools/zynqmpbif.c
parenta7c9a65ed9feee937c6b40a971d03e9c2f8447ca (diff)
tools: zynqmpbif: Use compiler builtin instead of linux-specific __swab32
__swab32() is a Linux specific macro defined in linux/swab.h. Let's use the compiler equivalent builtin function __builtin_bswap32() for better portability. Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'tools/zynqmpbif.c')
-rw-r--r--tools/zynqmpbif.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/zynqmpbif.c b/tools/zynqmpbif.c
index 8c47107c7b..82ce0ac1a5 100644
--- a/tools/zynqmpbif.c
+++ b/tools/zynqmpbif.c
@@ -517,7 +517,7 @@ static int bif_add_bit(struct bif_entry *bf)
debug("Bitstream Length: 0x%x\n", bitlen);
for (i = 0; i < bitlen; i += sizeof(uint32_t)) {
uint32_t *bitbin32 = (uint32_t *)&bitbin[i];
- *bitbin32 = __swab32(*bitbin32);
+ *bitbin32 = __builtin_bswap32(*bitbin32);
}
if (!bf->dest_dev)