svn commit: r340101 - stable/12/sys/powerpc/powermac

Michael Tuexen tuexen at FreeBSD.org
Sat Nov 3 20:35:40 UTC 2018


Author: tuexen
Date: Sat Nov  3 20:35:39 2018
New Revision: 340101
URL: https://svnweb.freebsd.org/changeset/base/340101

Log:
  MFC r339914:
  
  Bump the number of fans supported from 8 to 12.
  The number of fans on a PowerMac7,3 with liquid cooling is 9.
  
  Approved by:		re (kib@)
  Reviewed by:		andreast@
  Differential Revision:	https://reviews.freebsd.org/D17754

Modified:
  stable/12/sys/powerpc/powermac/fcu.c
Directory Properties:
  stable/12/   (props changed)

Modified: stable/12/sys/powerpc/powermac/fcu.c
==============================================================================
--- stable/12/sys/powerpc/powermac/fcu.c	Sat Nov  3 20:05:50 2018	(r340100)
+++ stable/12/sys/powerpc/powermac/fcu.c	Sat Nov  3 20:35:39 2018	(r340101)
@@ -451,9 +451,9 @@ fcu_fill_fan_prop(device_t dev)
 {
 	phandle_t child;
 	struct fcu_softc *sc;
-	u_int id[8];
-	char location[96];
-	char type[64];
+	u_int id[12];
+	char location[144];
+	char type[96];
 	int i = 0, j, len = 0, prop_len, prev_len = 0;
 
 	sc = device_get_softc(dev);


More information about the svn-src-stable-12 mailing list