svn commit: r248472 - head/sys/dev/puc

Ryan Stone rstone at FreeBSD.org
Mon Mar 18 19:22:51 UTC 2013


Author: rstone
Date: Mon Mar 18 19:22:51 2013
New Revision: 248472
URL: http://svnweb.freebsd.org/changeset/base/248472

Log:
  Correct the definition for Exar XR17V258IV: we must use a config_function
  to specify the offset into the PCI memory spare at which each serial port
  will find its registers.  This was already done for other Exar PCI serial
  devices; it was accidentally omitted for this specific device.
  
  Sponsored by:	Sandvine Incorporated
  MFC after:	1 week

Modified:
  head/sys/dev/puc/pucdata.c

Modified: head/sys/dev/puc/pucdata.c
==============================================================================
--- head/sys/dev/puc/pucdata.c	Mon Mar 18 18:04:09 2013	(r248471)
+++ head/sys/dev/puc/pucdata.c	Mon Mar 18 19:22:51 2013	(r248472)
@@ -629,6 +629,7 @@ const struct puc_cfg puc_pci_devices[] =
 	    "Exar XR17V258IV",
 	    DEFAULT_RCLK * 8,
 	    PUC_PORT_8S, 0x10, 0, -1,
+	    .config_function = puc_config_exar
 	},
 
 	/* The XR17V358 uses the 125MHz PCIe clock as its reference clock. */


More information about the svn-src-all mailing list