svn commit: r341643 - head/sys/dev/mlx5

Sean Bruno sbruno at FreeBSD.org
Thu Dec 6 18:59:34 UTC 2018


Author: sbruno
Date: Thu Dec  6 18:59:33 2018
New Revision: 341643
URL: https://svnweb.freebsd.org/changeset/base/341643

Log:
  Change u32 to uint32_t to allow the native-xtools target to build
  libsysdecode.
  
  Submitted by:	kib

Modified:
  head/sys/dev/mlx5/mlx5io.h

Modified: head/sys/dev/mlx5/mlx5io.h
==============================================================================
--- head/sys/dev/mlx5/mlx5io.h	Thu Dec  6 18:58:54 2018	(r341642)
+++ head/sys/dev/mlx5/mlx5io.h	Thu Dec  6 18:59:33 2018	(r341643)
@@ -132,7 +132,7 @@ struct mlx5_fpga_temperature {
 #define	MLX5_FPGA_RESET		_IO('m', 0x82)
 #define	MLX5_FPGA_IMAGE_SEL	_IOWINT('m', 0x83)
 #define	MLX5_FPGA_QUERY		_IOR('m', 0x84, struct mlx5_fpga_query)
-#define	MLX5_FPGA_CAP		_IOR('m', 0x85, u32[MLX5_FPGA_CAP_ARR_SZ])
+#define	MLX5_FPGA_CAP		_IOR('m', 0x85, uint32_t[MLX5_FPGA_CAP_ARR_SZ])
 #define	MLX5_FPGA_TEMPERATURE	_IOWR('m', 0x86, struct mlx5_fpga_temperature)
 #define	MLX5_FPGA_CONNECT	_IOWR('m', 0x87, enum mlx5_fpga_connect)
 


More information about the svn-src-all mailing list