From: Rosen Penev Date: Mon, 31 Jan 2022 06:55:09 +0000 (-0800) Subject: hdparm: fix formats for mips64 and ppc64 X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=9bbe88ff735a24d79756a98c051db3e488cdacea;p=openwrt-packages.git hdparm: fix formats for mips64 and ppc64 Signed-off-by: Rosen Penev --- diff --git a/utils/hdparm/patches/020-64bit.patch b/utils/hdparm/patches/020-64bit.patch new file mode 100644 index 000000000..d7389fba5 --- /dev/null +++ b/utils/hdparm/patches/020-64bit.patch @@ -0,0 +1,48 @@ +--- a/fibmap.c ++++ b/fibmap.c +@@ -17,6 +17,9 @@ + #include + #include + #include ++#ifndef __SANE_USERSPACE_TYPES__ ++#define __SANE_USERSPACE_TYPES__ /* For PPC64, to get LL64 types */ ++#endif + #include + #include + +--- a/fwdownload.c ++++ b/fwdownload.c +@@ -14,6 +14,9 @@ + #include + #include + #include ++#ifndef __SANE_USERSPACE_TYPES__ ++#define __SANE_USERSPACE_TYPES__ /* For PPC64, to get LL64 types */ ++#endif + #include + #include + #include +--- a/hdparm.c ++++ b/hdparm.c +@@ -24,6 +24,9 @@ + #include + #include + #include ++#ifndef __SANE_USERSPACE_TYPES__ ++#define __SANE_USERSPACE_TYPES__ /* For PPC64, to get LL64 types */ ++#endif + #include + #include + #include +--- a/identify.c ++++ b/identify.c +@@ -4,6 +4,9 @@ + #include + #include + #include ++#ifndef __SANE_USERSPACE_TYPES__ ++#define __SANE_USERSPACE_TYPES__ /* For PPC64, to get LL64 types */ ++#endif + #include + #include +