svn commit: r312740 - head/sys/dev/cesa

Wojciech Macek wma at FreeBSD.org
Wed Jan 25 06:11:08 UTC 2017


Author: wma
Date: Wed Jan 25 06:11:07 2017
New Revision: 312740
URL: https://svnweb.freebsd.org/changeset/base/312740

Log:
  Add misssing Armada38x ID's in CESA attach
  
  Marvell Armada 38x is supported in 3 variants,
  so take all into consideration in crypto driver
  attach routine.
  
  Submitted by:          Marcin Wojtas <mw at semihalf.com>
  Obtained from:         Semihalf
  Sponsored by:          Stormshield
  Reviewed by:           zbb
  Differential revision: https://reviews.freebsd.org/D9248

Modified:
  head/sys/dev/cesa/cesa.c

Modified: head/sys/dev/cesa/cesa.c
==============================================================================
--- head/sys/dev/cesa/cesa.c	Wed Jan 25 06:08:10 2017	(r312739)
+++ head/sys/dev/cesa/cesa.c	Wed Jan 25 06:11:07 2017	(r312740)
@@ -1045,6 +1045,8 @@ cesa_attach(device_t dev)
 	case MV_DEV_88F6281:
 	case MV_DEV_88F6282:
 	case MV_DEV_88F6828:
+	case MV_DEV_88F6820:
+	case MV_DEV_88F6810:
 		sc->sc_tperr = 0;
 		break;
 	case MV_DEV_MV78100:


More information about the svn-src-all mailing list