summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
authormarcel <marcel@FreeBSD.org>2004-12-11 06:15:12 +0000
committermarcel <marcel@FreeBSD.org>2004-12-11 06:15:12 +0000
commit1cd76b6473fff556d555981c6c723b165b0ae4c0 (patch)
treeff658cd41adf8749b8fc5eb620bf8a3d05136941 /sys
parent13a7d256347e764c9c7b1d3ccf9dd8cff7f23c91 (diff)
downloadFreeBSD-src-1cd76b6473fff556d555981c6c723b165b0ae4c0.zip
FreeBSD-src-1cd76b6473fff556d555981c6c723b165b0ae4c0.tar.gz
Use primitive types to avoid creating an artificial header dependency:
o s/u_long/unsigned long/ o s/uint32_t/unsigned int/g o s/uint64_t/unsigned long/g Trigger case: multimedia/mpeg2codec
Diffstat (limited to 'sys')
-rw-r--r--sys/ia64/include/fpu.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/sys/ia64/include/fpu.h b/sys/ia64/include/fpu.h
index c24bb67..7a068dd 100644
--- a/sys/ia64/include/fpu.h
+++ b/sys/ia64/include/fpu.h
@@ -79,10 +79,10 @@
| IA64_SF_TD)))
struct fpswa_ret {
- uint64_t status;
- uint64_t err1;
- uint64_t err2;
- uint64_t err3;
+ unsigned long status;
+ unsigned long err1;
+ unsigned long err2;
+ unsigned long err3;
};
struct fpswa_bundle {
@@ -90,8 +90,8 @@ struct fpswa_bundle {
};
struct fpswa_fpctx {
- uint64_t mask_low; /* f63 - f2 */
- uint64_t mask_high; /* f127 - f64 */
+ unsigned long mask_low; /* f63 - f2 */
+ unsigned long mask_high; /* f127 - f64 */
union _ia64_fpreg *fp_low_preserved; /* f2 - f5 */
union _ia64_fpreg *fp_low_volatile; /* f6 - f15 */
union _ia64_fpreg *fp_high_preserved; /* f16 - f31 */
@@ -99,11 +99,11 @@ struct fpswa_fpctx {
};
struct fpswa_iface {
- uint32_t if_rev;
- uint32_t __res;
- struct fpswa_ret (*if_fpswa)(u_long, struct fpswa_bundle *,
- uint64_t *, uint64_t *, uint64_t *, uint64_t *, uint64_t *,
- struct fpswa_fpctx *);
+ unsigned int if_rev;
+ unsigned int __res;
+ struct fpswa_ret (*if_fpswa)(unsigned long, struct fpswa_bundle *,
+ unsigned long *, unsigned long *, unsigned long *, unsigned long *,
+ unsigned long *, struct fpswa_fpctx *);
};
#endif /* ! _MACHINE_FPU_H_ */
OpenPOWER on IntegriCloud