svn commit: r301388 - in stable/10: share/man/man4 sys/dev/sfxge sys/dev/sfxge/common

Andrew Rybchenko arybchik at FreeBSD.org
Sat Jun 4 17:08:43 UTC 2016


Author: arybchik
Date: Sat Jun  4 17:08:34 2016
New Revision: 301388
URL: https://svnweb.freebsd.org/changeset/base/301388

Log:
  MFC r300607
  
  sfxge(4): cleanup: update copyright to 2016
  
  Sponsored by:   Solarflare Communications, Inc.

Modified:
  stable/10/share/man/man4/sfxge.4
  stable/10/sys/dev/sfxge/common/ef10_ev.c
  stable/10/sys/dev/sfxge/common/ef10_filter.c
  stable/10/sys/dev/sfxge/common/ef10_impl.h
  stable/10/sys/dev/sfxge/common/ef10_intr.c
  stable/10/sys/dev/sfxge/common/ef10_mac.c
  stable/10/sys/dev/sfxge/common/ef10_mcdi.c
  stable/10/sys/dev/sfxge/common/ef10_nic.c
  stable/10/sys/dev/sfxge/common/ef10_nvram.c
  stable/10/sys/dev/sfxge/common/ef10_phy.c
  stable/10/sys/dev/sfxge/common/ef10_rx.c
  stable/10/sys/dev/sfxge/common/ef10_tx.c
  stable/10/sys/dev/sfxge/common/ef10_vpd.c
  stable/10/sys/dev/sfxge/common/efsys.h
  stable/10/sys/dev/sfxge/common/efx.h
  stable/10/sys/dev/sfxge/common/efx_bootcfg.c
  stable/10/sys/dev/sfxge/common/efx_check.h
  stable/10/sys/dev/sfxge/common/efx_crc32.c
  stable/10/sys/dev/sfxge/common/efx_ev.c
  stable/10/sys/dev/sfxge/common/efx_filter.c
  stable/10/sys/dev/sfxge/common/efx_hash.c
  stable/10/sys/dev/sfxge/common/efx_impl.h
  stable/10/sys/dev/sfxge/common/efx_intr.c
  stable/10/sys/dev/sfxge/common/efx_lic.c
  stable/10/sys/dev/sfxge/common/efx_mac.c
  stable/10/sys/dev/sfxge/common/efx_mcdi.c
  stable/10/sys/dev/sfxge/common/efx_mcdi.h
  stable/10/sys/dev/sfxge/common/efx_mon.c
  stable/10/sys/dev/sfxge/common/efx_nic.c
  stable/10/sys/dev/sfxge/common/efx_nvram.c
  stable/10/sys/dev/sfxge/common/efx_phy.c
  stable/10/sys/dev/sfxge/common/efx_phy_ids.h
  stable/10/sys/dev/sfxge/common/efx_port.c
  stable/10/sys/dev/sfxge/common/efx_regs.h
  stable/10/sys/dev/sfxge/common/efx_regs_ef10.h
  stable/10/sys/dev/sfxge/common/efx_regs_pci.h
  stable/10/sys/dev/sfxge/common/efx_rx.c
  stable/10/sys/dev/sfxge/common/efx_sram.c
  stable/10/sys/dev/sfxge/common/efx_tx.c
  stable/10/sys/dev/sfxge/common/efx_types.h
  stable/10/sys/dev/sfxge/common/efx_vpd.c
  stable/10/sys/dev/sfxge/common/efx_wol.c
  stable/10/sys/dev/sfxge/common/hunt_impl.h
  stable/10/sys/dev/sfxge/common/hunt_nic.c
  stable/10/sys/dev/sfxge/common/hunt_phy.c
  stable/10/sys/dev/sfxge/common/mcdi_mon.c
  stable/10/sys/dev/sfxge/common/mcdi_mon.h
  stable/10/sys/dev/sfxge/common/medford_impl.h
  stable/10/sys/dev/sfxge/common/medford_nic.c
  stable/10/sys/dev/sfxge/common/siena_flash.h
  stable/10/sys/dev/sfxge/common/siena_impl.h
  stable/10/sys/dev/sfxge/common/siena_mac.c
  stable/10/sys/dev/sfxge/common/siena_mcdi.c
  stable/10/sys/dev/sfxge/common/siena_nic.c
  stable/10/sys/dev/sfxge/common/siena_nvram.c
  stable/10/sys/dev/sfxge/common/siena_phy.c
  stable/10/sys/dev/sfxge/common/siena_sram.c
  stable/10/sys/dev/sfxge/common/siena_vpd.c
  stable/10/sys/dev/sfxge/sfxge.c
  stable/10/sys/dev/sfxge/sfxge.h
  stable/10/sys/dev/sfxge/sfxge_dma.c
  stable/10/sys/dev/sfxge/sfxge_ev.c
  stable/10/sys/dev/sfxge/sfxge_intr.c
  stable/10/sys/dev/sfxge/sfxge_ioc.h
  stable/10/sys/dev/sfxge/sfxge_mcdi.c
  stable/10/sys/dev/sfxge/sfxge_nvram.c
  stable/10/sys/dev/sfxge/sfxge_port.c
  stable/10/sys/dev/sfxge/sfxge_rx.c
  stable/10/sys/dev/sfxge/sfxge_rx.h
  stable/10/sys/dev/sfxge/sfxge_tx.c
  stable/10/sys/dev/sfxge/sfxge_tx.h
  stable/10/sys/dev/sfxge/sfxge_version.h
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/share/man/man4/sfxge.4
==============================================================================
--- stable/10/share/man/man4/sfxge.4	Sat Jun  4 17:05:20 2016	(r301387)
+++ stable/10/share/man/man4/sfxge.4	Sat Jun  4 17:08:34 2016	(r301388)
@@ -1,4 +1,4 @@
-.\" Copyright (c) 2011-2015 Solarflare Communications Inc.
+.\" Copyright (c) 2011-2016 Solarflare Communications Inc.
 .\" All rights reserved.
 .\"
 .\" Redistribution and use in source and binary forms, with or without

Modified: stable/10/sys/dev/sfxge/common/ef10_ev.c
==============================================================================
--- stable/10/sys/dev/sfxge/common/ef10_ev.c	Sat Jun  4 17:05:20 2016	(r301387)
+++ stable/10/sys/dev/sfxge/common/ef10_ev.c	Sat Jun  4 17:08:34 2016	(r301388)
@@ -1,5 +1,5 @@
 /*-
- * Copyright (c) 2012-2015 Solarflare Communications Inc.
+ * Copyright (c) 2012-2016 Solarflare Communications Inc.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without

Modified: stable/10/sys/dev/sfxge/common/ef10_filter.c
==============================================================================
--- stable/10/sys/dev/sfxge/common/ef10_filter.c	Sat Jun  4 17:05:20 2016	(r301387)
+++ stable/10/sys/dev/sfxge/common/ef10_filter.c	Sat Jun  4 17:08:34 2016	(r301388)
@@ -1,5 +1,5 @@
 /*-
- * Copyright (c) 2007-2015 Solarflare Communications Inc.
+ * Copyright (c) 2007-2016 Solarflare Communications Inc.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without

Modified: stable/10/sys/dev/sfxge/common/ef10_impl.h
==============================================================================
--- stable/10/sys/dev/sfxge/common/ef10_impl.h	Sat Jun  4 17:05:20 2016	(r301387)
+++ stable/10/sys/dev/sfxge/common/ef10_impl.h	Sat Jun  4 17:08:34 2016	(r301388)
@@ -1,5 +1,5 @@
 /*-
- * Copyright (c) 2015 Solarflare Communications Inc.
+ * Copyright (c) 2015-2016 Solarflare Communications Inc.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without

Modified: stable/10/sys/dev/sfxge/common/ef10_intr.c
==============================================================================
--- stable/10/sys/dev/sfxge/common/ef10_intr.c	Sat Jun  4 17:05:20 2016	(r301387)
+++ stable/10/sys/dev/sfxge/common/ef10_intr.c	Sat Jun  4 17:08:34 2016	(r301388)
@@ -1,5 +1,5 @@
 /*-
- * Copyright (c) 2012-2015 Solarflare Communications Inc.
+ * Copyright (c) 2012-2016 Solarflare Communications Inc.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without

Modified: stable/10/sys/dev/sfxge/common/ef10_mac.c
==============================================================================
--- stable/10/sys/dev/sfxge/common/ef10_mac.c	Sat Jun  4 17:05:20 2016	(r301387)
+++ stable/10/sys/dev/sfxge/common/ef10_mac.c	Sat Jun  4 17:08:34 2016	(r301388)
@@ -1,5 +1,5 @@
 /*-
- * Copyright (c) 2012-2015 Solarflare Communications Inc.
+ * Copyright (c) 2012-2016 Solarflare Communications Inc.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without

Modified: stable/10/sys/dev/sfxge/common/ef10_mcdi.c
==============================================================================
--- stable/10/sys/dev/sfxge/common/ef10_mcdi.c	Sat Jun  4 17:05:20 2016	(r301387)
+++ stable/10/sys/dev/sfxge/common/ef10_mcdi.c	Sat Jun  4 17:08:34 2016	(r301388)
@@ -1,5 +1,5 @@
 /*-
- * Copyright (c) 2012-2015 Solarflare Communications Inc.
+ * Copyright (c) 2012-2016 Solarflare Communications Inc.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without

Modified: stable/10/sys/dev/sfxge/common/ef10_nic.c
==============================================================================
--- stable/10/sys/dev/sfxge/common/ef10_nic.c	Sat Jun  4 17:05:20 2016	(r301387)
+++ stable/10/sys/dev/sfxge/common/ef10_nic.c	Sat Jun  4 17:08:34 2016	(r301388)
@@ -1,5 +1,5 @@
 /*-
- * Copyright (c) 2012-2015 Solarflare Communications Inc.
+ * Copyright (c) 2012-2016 Solarflare Communications Inc.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without

Modified: stable/10/sys/dev/sfxge/common/ef10_nvram.c
==============================================================================
--- stable/10/sys/dev/sfxge/common/ef10_nvram.c	Sat Jun  4 17:05:20 2016	(r301387)
+++ stable/10/sys/dev/sfxge/common/ef10_nvram.c	Sat Jun  4 17:08:34 2016	(r301388)
@@ -1,5 +1,5 @@
 /*-
- * Copyright (c) 2012-2015 Solarflare Communications Inc.
+ * Copyright (c) 2012-2016 Solarflare Communications Inc.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without

Modified: stable/10/sys/dev/sfxge/common/ef10_phy.c
==============================================================================
--- stable/10/sys/dev/sfxge/common/ef10_phy.c	Sat Jun  4 17:05:20 2016	(r301387)
+++ stable/10/sys/dev/sfxge/common/ef10_phy.c	Sat Jun  4 17:08:34 2016	(r301388)
@@ -1,5 +1,5 @@
 /*-
- * Copyright (c) 2012-2015 Solarflare Communications Inc.
+ * Copyright (c) 2012-2016 Solarflare Communications Inc.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without

Modified: stable/10/sys/dev/sfxge/common/ef10_rx.c
==============================================================================
--- stable/10/sys/dev/sfxge/common/ef10_rx.c	Sat Jun  4 17:05:20 2016	(r301387)
+++ stable/10/sys/dev/sfxge/common/ef10_rx.c	Sat Jun  4 17:08:34 2016	(r301388)
@@ -1,5 +1,5 @@
 /*-
- * Copyright (c) 2012-2015 Solarflare Communications Inc.
+ * Copyright (c) 2012-2016 Solarflare Communications Inc.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without

Modified: stable/10/sys/dev/sfxge/common/ef10_tx.c
==============================================================================
--- stable/10/sys/dev/sfxge/common/ef10_tx.c	Sat Jun  4 17:05:20 2016	(r301387)
+++ stable/10/sys/dev/sfxge/common/ef10_tx.c	Sat Jun  4 17:08:34 2016	(r301388)
@@ -1,5 +1,5 @@
 /*-
- * Copyright (c) 2012-2015 Solarflare Communications Inc.
+ * Copyright (c) 2012-2016 Solarflare Communications Inc.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without

Modified: stable/10/sys/dev/sfxge/common/ef10_vpd.c
==============================================================================
--- stable/10/sys/dev/sfxge/common/ef10_vpd.c	Sat Jun  4 17:05:20 2016	(r301387)
+++ stable/10/sys/dev/sfxge/common/ef10_vpd.c	Sat Jun  4 17:08:34 2016	(r301388)
@@ -1,5 +1,5 @@
 /*-
- * Copyright (c) 2009-2015 Solarflare Communications Inc.
+ * Copyright (c) 2009-2016 Solarflare Communications Inc.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without

Modified: stable/10/sys/dev/sfxge/common/efsys.h
==============================================================================
--- stable/10/sys/dev/sfxge/common/efsys.h	Sat Jun  4 17:05:20 2016	(r301387)
+++ stable/10/sys/dev/sfxge/common/efsys.h	Sat Jun  4 17:08:34 2016	(r301388)
@@ -1,5 +1,5 @@
 /*-
- * Copyright (c) 2010-2015 Solarflare Communications Inc.
+ * Copyright (c) 2010-2016 Solarflare Communications Inc.
  * All rights reserved.
  *
  * This software was developed in part by Philip Paeps under contract for

Modified: stable/10/sys/dev/sfxge/common/efx.h
==============================================================================
--- stable/10/sys/dev/sfxge/common/efx.h	Sat Jun  4 17:05:20 2016	(r301387)
+++ stable/10/sys/dev/sfxge/common/efx.h	Sat Jun  4 17:08:34 2016	(r301388)
@@ -1,5 +1,5 @@
 /*-
- * Copyright (c) 2006-2015 Solarflare Communications Inc.
+ * Copyright (c) 2006-2016 Solarflare Communications Inc.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without

Modified: stable/10/sys/dev/sfxge/common/efx_bootcfg.c
==============================================================================
--- stable/10/sys/dev/sfxge/common/efx_bootcfg.c	Sat Jun  4 17:05:20 2016	(r301387)
+++ stable/10/sys/dev/sfxge/common/efx_bootcfg.c	Sat Jun  4 17:08:34 2016	(r301388)
@@ -1,5 +1,5 @@
 /*-
- * Copyright (c) 2009-2015 Solarflare Communications Inc.
+ * Copyright (c) 2009-2016 Solarflare Communications Inc.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without

Modified: stable/10/sys/dev/sfxge/common/efx_check.h
==============================================================================
--- stable/10/sys/dev/sfxge/common/efx_check.h	Sat Jun  4 17:05:20 2016	(r301387)
+++ stable/10/sys/dev/sfxge/common/efx_check.h	Sat Jun  4 17:08:34 2016	(r301388)
@@ -1,5 +1,5 @@
 /*-
- * Copyright (c) 2012-2015 Solarflare Communications Inc.
+ * Copyright (c) 2012-2016 Solarflare Communications Inc.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without

Modified: stable/10/sys/dev/sfxge/common/efx_crc32.c
==============================================================================
--- stable/10/sys/dev/sfxge/common/efx_crc32.c	Sat Jun  4 17:05:20 2016	(r301387)
+++ stable/10/sys/dev/sfxge/common/efx_crc32.c	Sat Jun  4 17:08:34 2016	(r301388)
@@ -1,5 +1,5 @@
 /*-
- * Copyright (c) 2013-2015 Solarflare Communications Inc.
+ * Copyright (c) 2013-2016 Solarflare Communications Inc.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without

Modified: stable/10/sys/dev/sfxge/common/efx_ev.c
==============================================================================
--- stable/10/sys/dev/sfxge/common/efx_ev.c	Sat Jun  4 17:05:20 2016	(r301387)
+++ stable/10/sys/dev/sfxge/common/efx_ev.c	Sat Jun  4 17:08:34 2016	(r301388)
@@ -1,5 +1,5 @@
 /*-
- * Copyright (c) 2007-2015 Solarflare Communications Inc.
+ * Copyright (c) 2007-2016 Solarflare Communications Inc.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without

Modified: stable/10/sys/dev/sfxge/common/efx_filter.c
==============================================================================
--- stable/10/sys/dev/sfxge/common/efx_filter.c	Sat Jun  4 17:05:20 2016	(r301387)
+++ stable/10/sys/dev/sfxge/common/efx_filter.c	Sat Jun  4 17:08:34 2016	(r301388)
@@ -1,5 +1,5 @@
 /*-
- * Copyright (c) 2007-2015 Solarflare Communications Inc.
+ * Copyright (c) 2007-2016 Solarflare Communications Inc.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without

Modified: stable/10/sys/dev/sfxge/common/efx_hash.c
==============================================================================
--- stable/10/sys/dev/sfxge/common/efx_hash.c	Sat Jun  4 17:05:20 2016	(r301387)
+++ stable/10/sys/dev/sfxge/common/efx_hash.c	Sat Jun  4 17:08:34 2016	(r301388)
@@ -10,7 +10,7 @@
  *  ...You can use this free for any purpose.  It's in the public domain.
  *  It has no warranty."
  *
- * Copyright (c) 2014-2015 Solarflare Communications Inc.
+ * Copyright (c) 2014-2016 Solarflare Communications Inc.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without

Modified: stable/10/sys/dev/sfxge/common/efx_impl.h
==============================================================================
--- stable/10/sys/dev/sfxge/common/efx_impl.h	Sat Jun  4 17:05:20 2016	(r301387)
+++ stable/10/sys/dev/sfxge/common/efx_impl.h	Sat Jun  4 17:08:34 2016	(r301388)
@@ -1,5 +1,5 @@
 /*-
- * Copyright (c) 2007-2015 Solarflare Communications Inc.
+ * Copyright (c) 2007-2016 Solarflare Communications Inc.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without

Modified: stable/10/sys/dev/sfxge/common/efx_intr.c
==============================================================================
--- stable/10/sys/dev/sfxge/common/efx_intr.c	Sat Jun  4 17:05:20 2016	(r301387)
+++ stable/10/sys/dev/sfxge/common/efx_intr.c	Sat Jun  4 17:08:34 2016	(r301388)
@@ -1,5 +1,5 @@
 /*-
- * Copyright (c) 2007-2015 Solarflare Communications Inc.
+ * Copyright (c) 2007-2016 Solarflare Communications Inc.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without

Modified: stable/10/sys/dev/sfxge/common/efx_lic.c
==============================================================================
--- stable/10/sys/dev/sfxge/common/efx_lic.c	Sat Jun  4 17:05:20 2016	(r301387)
+++ stable/10/sys/dev/sfxge/common/efx_lic.c	Sat Jun  4 17:08:34 2016	(r301388)
@@ -1,5 +1,5 @@
 /*-
- * Copyright (c) 2009-2015 Solarflare Communications Inc.
+ * Copyright (c) 2009-2016 Solarflare Communications Inc.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without

Modified: stable/10/sys/dev/sfxge/common/efx_mac.c
==============================================================================
--- stable/10/sys/dev/sfxge/common/efx_mac.c	Sat Jun  4 17:05:20 2016	(r301387)
+++ stable/10/sys/dev/sfxge/common/efx_mac.c	Sat Jun  4 17:08:34 2016	(r301388)
@@ -1,5 +1,5 @@
 /*-
- * Copyright (c) 2007-2015 Solarflare Communications Inc.
+ * Copyright (c) 2007-2016 Solarflare Communications Inc.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without

Modified: stable/10/sys/dev/sfxge/common/efx_mcdi.c
==============================================================================
--- stable/10/sys/dev/sfxge/common/efx_mcdi.c	Sat Jun  4 17:05:20 2016	(r301387)
+++ stable/10/sys/dev/sfxge/common/efx_mcdi.c	Sat Jun  4 17:08:34 2016	(r301388)
@@ -1,5 +1,5 @@
 /*-
- * Copyright (c) 2008-2015 Solarflare Communications Inc.
+ * Copyright (c) 2008-2016 Solarflare Communications Inc.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without

Modified: stable/10/sys/dev/sfxge/common/efx_mcdi.h
==============================================================================
--- stable/10/sys/dev/sfxge/common/efx_mcdi.h	Sat Jun  4 17:05:20 2016	(r301387)
+++ stable/10/sys/dev/sfxge/common/efx_mcdi.h	Sat Jun  4 17:08:34 2016	(r301388)
@@ -1,5 +1,5 @@
 /*-
- * Copyright (c) 2009-2015 Solarflare Communications Inc.
+ * Copyright (c) 2009-2016 Solarflare Communications Inc.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without

Modified: stable/10/sys/dev/sfxge/common/efx_mon.c
==============================================================================
--- stable/10/sys/dev/sfxge/common/efx_mon.c	Sat Jun  4 17:05:20 2016	(r301387)
+++ stable/10/sys/dev/sfxge/common/efx_mon.c	Sat Jun  4 17:08:34 2016	(r301388)
@@ -1,5 +1,5 @@
 /*-
- * Copyright (c) 2007-2015 Solarflare Communications Inc.
+ * Copyright (c) 2007-2016 Solarflare Communications Inc.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without

Modified: stable/10/sys/dev/sfxge/common/efx_nic.c
==============================================================================
--- stable/10/sys/dev/sfxge/common/efx_nic.c	Sat Jun  4 17:05:20 2016	(r301387)
+++ stable/10/sys/dev/sfxge/common/efx_nic.c	Sat Jun  4 17:08:34 2016	(r301388)
@@ -1,5 +1,5 @@
 /*-
- * Copyright (c) 2007-2015 Solarflare Communications Inc.
+ * Copyright (c) 2007-2016 Solarflare Communications Inc.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without

Modified: stable/10/sys/dev/sfxge/common/efx_nvram.c
==============================================================================
--- stable/10/sys/dev/sfxge/common/efx_nvram.c	Sat Jun  4 17:05:20 2016	(r301387)
+++ stable/10/sys/dev/sfxge/common/efx_nvram.c	Sat Jun  4 17:08:34 2016	(r301388)
@@ -1,5 +1,5 @@
 /*-
- * Copyright (c) 2009-2015 Solarflare Communications Inc.
+ * Copyright (c) 2009-2016 Solarflare Communications Inc.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without

Modified: stable/10/sys/dev/sfxge/common/efx_phy.c
==============================================================================
--- stable/10/sys/dev/sfxge/common/efx_phy.c	Sat Jun  4 17:05:20 2016	(r301387)
+++ stable/10/sys/dev/sfxge/common/efx_phy.c	Sat Jun  4 17:08:34 2016	(r301388)
@@ -1,5 +1,5 @@
 /*-
- * Copyright (c) 2007-2015 Solarflare Communications Inc.
+ * Copyright (c) 2007-2016 Solarflare Communications Inc.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without

Modified: stable/10/sys/dev/sfxge/common/efx_phy_ids.h
==============================================================================
--- stable/10/sys/dev/sfxge/common/efx_phy_ids.h	Sat Jun  4 17:05:20 2016	(r301387)
+++ stable/10/sys/dev/sfxge/common/efx_phy_ids.h	Sat Jun  4 17:08:34 2016	(r301388)
@@ -1,5 +1,5 @@
 /*-
- * Copyright (c) 2013-2015 Solarflare Communications Inc.
+ * Copyright (c) 2013-2016 Solarflare Communications Inc.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without

Modified: stable/10/sys/dev/sfxge/common/efx_port.c
==============================================================================
--- stable/10/sys/dev/sfxge/common/efx_port.c	Sat Jun  4 17:05:20 2016	(r301387)
+++ stable/10/sys/dev/sfxge/common/efx_port.c	Sat Jun  4 17:08:34 2016	(r301388)
@@ -1,5 +1,5 @@
 /*-
- * Copyright (c) 2009-2015 Solarflare Communications Inc.
+ * Copyright (c) 2009-2016 Solarflare Communications Inc.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without

Modified: stable/10/sys/dev/sfxge/common/efx_regs.h
==============================================================================
--- stable/10/sys/dev/sfxge/common/efx_regs.h	Sat Jun  4 17:05:20 2016	(r301387)
+++ stable/10/sys/dev/sfxge/common/efx_regs.h	Sat Jun  4 17:08:34 2016	(r301388)
@@ -1,5 +1,5 @@
 /*-
- * Copyright (c) 2007-2015 Solarflare Communications Inc.
+ * Copyright (c) 2007-2016 Solarflare Communications Inc.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without

Modified: stable/10/sys/dev/sfxge/common/efx_regs_ef10.h
==============================================================================
--- stable/10/sys/dev/sfxge/common/efx_regs_ef10.h	Sat Jun  4 17:05:20 2016	(r301387)
+++ stable/10/sys/dev/sfxge/common/efx_regs_ef10.h	Sat Jun  4 17:08:34 2016	(r301388)
@@ -1,5 +1,5 @@
 /*-
- * Copyright (c) 2007-2015 Solarflare Communications Inc.
+ * Copyright (c) 2007-2016 Solarflare Communications Inc.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without

Modified: stable/10/sys/dev/sfxge/common/efx_regs_pci.h
==============================================================================
--- stable/10/sys/dev/sfxge/common/efx_regs_pci.h	Sat Jun  4 17:05:20 2016	(r301387)
+++ stable/10/sys/dev/sfxge/common/efx_regs_pci.h	Sat Jun  4 17:08:34 2016	(r301388)
@@ -1,5 +1,5 @@
 /*-
- * Copyright (c) 2007-2015 Solarflare Communications Inc.
+ * Copyright (c) 2007-2016 Solarflare Communications Inc.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without

Modified: stable/10/sys/dev/sfxge/common/efx_rx.c
==============================================================================
--- stable/10/sys/dev/sfxge/common/efx_rx.c	Sat Jun  4 17:05:20 2016	(r301387)
+++ stable/10/sys/dev/sfxge/common/efx_rx.c	Sat Jun  4 17:08:34 2016	(r301388)
@@ -1,5 +1,5 @@
 /*-
- * Copyright (c) 2007-2015 Solarflare Communications Inc.
+ * Copyright (c) 2007-2016 Solarflare Communications Inc.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without

Modified: stable/10/sys/dev/sfxge/common/efx_sram.c
==============================================================================
--- stable/10/sys/dev/sfxge/common/efx_sram.c	Sat Jun  4 17:05:20 2016	(r301387)
+++ stable/10/sys/dev/sfxge/common/efx_sram.c	Sat Jun  4 17:08:34 2016	(r301388)
@@ -1,5 +1,5 @@
 /*-
- * Copyright (c) 2007-2015 Solarflare Communications Inc.
+ * Copyright (c) 2007-2016 Solarflare Communications Inc.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without

Modified: stable/10/sys/dev/sfxge/common/efx_tx.c
==============================================================================
--- stable/10/sys/dev/sfxge/common/efx_tx.c	Sat Jun  4 17:05:20 2016	(r301387)
+++ stable/10/sys/dev/sfxge/common/efx_tx.c	Sat Jun  4 17:08:34 2016	(r301388)
@@ -1,5 +1,5 @@
 /*-
- * Copyright (c) 2007-2015 Solarflare Communications Inc.
+ * Copyright (c) 2007-2016 Solarflare Communications Inc.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without

Modified: stable/10/sys/dev/sfxge/common/efx_types.h
==============================================================================
--- stable/10/sys/dev/sfxge/common/efx_types.h	Sat Jun  4 17:05:20 2016	(r301387)
+++ stable/10/sys/dev/sfxge/common/efx_types.h	Sat Jun  4 17:08:34 2016	(r301388)
@@ -1,5 +1,5 @@
 /*-
- * Copyright (c) 2007-2015 Solarflare Communications Inc.
+ * Copyright (c) 2007-2016 Solarflare Communications Inc.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without

Modified: stable/10/sys/dev/sfxge/common/efx_vpd.c
==============================================================================
--- stable/10/sys/dev/sfxge/common/efx_vpd.c	Sat Jun  4 17:05:20 2016	(r301387)
+++ stable/10/sys/dev/sfxge/common/efx_vpd.c	Sat Jun  4 17:08:34 2016	(r301388)
@@ -1,5 +1,5 @@
 /*-
- * Copyright (c) 2009-2015 Solarflare Communications Inc.
+ * Copyright (c) 2009-2016 Solarflare Communications Inc.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without

Modified: stable/10/sys/dev/sfxge/common/efx_wol.c
==============================================================================
--- stable/10/sys/dev/sfxge/common/efx_wol.c	Sat Jun  4 17:05:20 2016	(r301387)
+++ stable/10/sys/dev/sfxge/common/efx_wol.c	Sat Jun  4 17:08:34 2016	(r301388)
@@ -1,5 +1,5 @@
 /*-
- * Copyright (c) 2009-2015 Solarflare Communications Inc.
+ * Copyright (c) 2009-2016 Solarflare Communications Inc.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without

Modified: stable/10/sys/dev/sfxge/common/hunt_impl.h
==============================================================================
--- stable/10/sys/dev/sfxge/common/hunt_impl.h	Sat Jun  4 17:05:20 2016	(r301387)
+++ stable/10/sys/dev/sfxge/common/hunt_impl.h	Sat Jun  4 17:08:34 2016	(r301388)
@@ -1,5 +1,5 @@
 /*-
- * Copyright (c) 2012-2015 Solarflare Communications Inc.
+ * Copyright (c) 2012-2016 Solarflare Communications Inc.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without

Modified: stable/10/sys/dev/sfxge/common/hunt_nic.c
==============================================================================
--- stable/10/sys/dev/sfxge/common/hunt_nic.c	Sat Jun  4 17:05:20 2016	(r301387)
+++ stable/10/sys/dev/sfxge/common/hunt_nic.c	Sat Jun  4 17:08:34 2016	(r301388)
@@ -1,5 +1,5 @@
 /*-
- * Copyright (c) 2012-2015 Solarflare Communications Inc.
+ * Copyright (c) 2012-2016 Solarflare Communications Inc.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without

Modified: stable/10/sys/dev/sfxge/common/hunt_phy.c
==============================================================================
--- stable/10/sys/dev/sfxge/common/hunt_phy.c	Sat Jun  4 17:05:20 2016	(r301387)
+++ stable/10/sys/dev/sfxge/common/hunt_phy.c	Sat Jun  4 17:08:34 2016	(r301388)
@@ -1,5 +1,5 @@
 /*-
- * Copyright (c) 2012-2015 Solarflare Communications Inc.
+ * Copyright (c) 2012-2016 Solarflare Communications Inc.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without

Modified: stable/10/sys/dev/sfxge/common/mcdi_mon.c
==============================================================================
--- stable/10/sys/dev/sfxge/common/mcdi_mon.c	Sat Jun  4 17:05:20 2016	(r301387)
+++ stable/10/sys/dev/sfxge/common/mcdi_mon.c	Sat Jun  4 17:08:34 2016	(r301388)
@@ -1,5 +1,5 @@
 /*-
- * Copyright (c) 2009-2015 Solarflare Communications Inc.
+ * Copyright (c) 2009-2016 Solarflare Communications Inc.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without

Modified: stable/10/sys/dev/sfxge/common/mcdi_mon.h
==============================================================================
--- stable/10/sys/dev/sfxge/common/mcdi_mon.h	Sat Jun  4 17:05:20 2016	(r301387)
+++ stable/10/sys/dev/sfxge/common/mcdi_mon.h	Sat Jun  4 17:08:34 2016	(r301388)
@@ -1,5 +1,5 @@
 /*-
- * Copyright (c) 2009-2015 Solarflare Communications Inc.
+ * Copyright (c) 2009-2016 Solarflare Communications Inc.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without

Modified: stable/10/sys/dev/sfxge/common/medford_impl.h
==============================================================================
--- stable/10/sys/dev/sfxge/common/medford_impl.h	Sat Jun  4 17:05:20 2016	(r301387)
+++ stable/10/sys/dev/sfxge/common/medford_impl.h	Sat Jun  4 17:08:34 2016	(r301388)
@@ -1,5 +1,5 @@
 /*-
- * Copyright (c) 2015 Solarflare Communications Inc.
+ * Copyright (c) 2015-2016 Solarflare Communications Inc.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without

Modified: stable/10/sys/dev/sfxge/common/medford_nic.c
==============================================================================
--- stable/10/sys/dev/sfxge/common/medford_nic.c	Sat Jun  4 17:05:20 2016	(r301387)
+++ stable/10/sys/dev/sfxge/common/medford_nic.c	Sat Jun  4 17:08:34 2016	(r301388)
@@ -1,5 +1,5 @@
 /*-
- * Copyright (c) 2015 Solarflare Communications Inc.
+ * Copyright (c) 2015-2016 Solarflare Communications Inc.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without

Modified: stable/10/sys/dev/sfxge/common/siena_flash.h
==============================================================================
--- stable/10/sys/dev/sfxge/common/siena_flash.h	Sat Jun  4 17:05:20 2016	(r301387)
+++ stable/10/sys/dev/sfxge/common/siena_flash.h	Sat Jun  4 17:08:34 2016	(r301388)
@@ -1,5 +1,5 @@
 /*-
- * Copyright (c) 2007-2015 Solarflare Communications Inc.
+ * Copyright (c) 2007-2016 Solarflare Communications Inc.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without

Modified: stable/10/sys/dev/sfxge/common/siena_impl.h
==============================================================================
--- stable/10/sys/dev/sfxge/common/siena_impl.h	Sat Jun  4 17:05:20 2016	(r301387)
+++ stable/10/sys/dev/sfxge/common/siena_impl.h	Sat Jun  4 17:08:34 2016	(r301388)
@@ -1,5 +1,5 @@
 /*-
- * Copyright (c) 2009-2015 Solarflare Communications Inc.
+ * Copyright (c) 2009-2016 Solarflare Communications Inc.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without

Modified: stable/10/sys/dev/sfxge/common/siena_mac.c
==============================================================================
--- stable/10/sys/dev/sfxge/common/siena_mac.c	Sat Jun  4 17:05:20 2016	(r301387)
+++ stable/10/sys/dev/sfxge/common/siena_mac.c	Sat Jun  4 17:08:34 2016	(r301388)
@@ -1,5 +1,5 @@
 /*-
- * Copyright (c) 2009-2015 Solarflare Communications Inc.
+ * Copyright (c) 2009-2016 Solarflare Communications Inc.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without

Modified: stable/10/sys/dev/sfxge/common/siena_mcdi.c
==============================================================================
--- stable/10/sys/dev/sfxge/common/siena_mcdi.c	Sat Jun  4 17:05:20 2016	(r301387)
+++ stable/10/sys/dev/sfxge/common/siena_mcdi.c	Sat Jun  4 17:08:34 2016	(r301388)
@@ -1,5 +1,5 @@
 /*-
- * Copyright (c) 2012-2015 Solarflare Communications Inc.
+ * Copyright (c) 2012-2016 Solarflare Communications Inc.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without

Modified: stable/10/sys/dev/sfxge/common/siena_nic.c
==============================================================================
--- stable/10/sys/dev/sfxge/common/siena_nic.c	Sat Jun  4 17:05:20 2016	(r301387)
+++ stable/10/sys/dev/sfxge/common/siena_nic.c	Sat Jun  4 17:08:34 2016	(r301388)
@@ -1,5 +1,5 @@
 /*-
- * Copyright (c) 2009-2015 Solarflare Communications Inc.
+ * Copyright (c) 2009-2016 Solarflare Communications Inc.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without

Modified: stable/10/sys/dev/sfxge/common/siena_nvram.c
==============================================================================
--- stable/10/sys/dev/sfxge/common/siena_nvram.c	Sat Jun  4 17:05:20 2016	(r301387)
+++ stable/10/sys/dev/sfxge/common/siena_nvram.c	Sat Jun  4 17:08:34 2016	(r301388)
@@ -1,5 +1,5 @@
 /*-
- * Copyright (c) 2009-2015 Solarflare Communications Inc.
+ * Copyright (c) 2009-2016 Solarflare Communications Inc.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without

Modified: stable/10/sys/dev/sfxge/common/siena_phy.c
==============================================================================
--- stable/10/sys/dev/sfxge/common/siena_phy.c	Sat Jun  4 17:05:20 2016	(r301387)
+++ stable/10/sys/dev/sfxge/common/siena_phy.c	Sat Jun  4 17:08:34 2016	(r301388)
@@ -1,5 +1,5 @@
 /*-
- * Copyright (c) 2009-2015 Solarflare Communications Inc.
+ * Copyright (c) 2009-2016 Solarflare Communications Inc.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without

Modified: stable/10/sys/dev/sfxge/common/siena_sram.c
==============================================================================
--- stable/10/sys/dev/sfxge/common/siena_sram.c	Sat Jun  4 17:05:20 2016	(r301387)
+++ stable/10/sys/dev/sfxge/common/siena_sram.c	Sat Jun  4 17:08:34 2016	(r301388)
@@ -1,5 +1,5 @@
 /*-
- * Copyright (c) 2009-2015 Solarflare Communications Inc.
+ * Copyright (c) 2009-2016 Solarflare Communications Inc.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without

Modified: stable/10/sys/dev/sfxge/common/siena_vpd.c
==============================================================================
--- stable/10/sys/dev/sfxge/common/siena_vpd.c	Sat Jun  4 17:05:20 2016	(r301387)
+++ stable/10/sys/dev/sfxge/common/siena_vpd.c	Sat Jun  4 17:08:34 2016	(r301388)
@@ -1,5 +1,5 @@
 /*-
- * Copyright (c) 2009-2015 Solarflare Communications Inc.
+ * Copyright (c) 2009-2016 Solarflare Communications Inc.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without

Modified: stable/10/sys/dev/sfxge/sfxge.c
==============================================================================
--- stable/10/sys/dev/sfxge/sfxge.c	Sat Jun  4 17:05:20 2016	(r301387)
+++ stable/10/sys/dev/sfxge/sfxge.c	Sat Jun  4 17:08:34 2016	(r301388)
@@ -1,5 +1,5 @@
 /*-
- * Copyright (c) 2010-2015 Solarflare Communications Inc.
+ * Copyright (c) 2010-2016 Solarflare Communications Inc.
  * All rights reserved.
  *
  * This software was developed in part by Philip Paeps under contract for

Modified: stable/10/sys/dev/sfxge/sfxge.h
==============================================================================
--- stable/10/sys/dev/sfxge/sfxge.h	Sat Jun  4 17:05:20 2016	(r301387)
+++ stable/10/sys/dev/sfxge/sfxge.h	Sat Jun  4 17:08:34 2016	(r301388)
@@ -1,5 +1,5 @@
 /*-
- * Copyright (c) 2010-2015 Solarflare Communications Inc.
+ * Copyright (c) 2010-2016 Solarflare Communications Inc.
  * All rights reserved.
  *
  * This software was developed in part by Philip Paeps under contract for

Modified: stable/10/sys/dev/sfxge/sfxge_dma.c
==============================================================================
--- stable/10/sys/dev/sfxge/sfxge_dma.c	Sat Jun  4 17:05:20 2016	(r301387)
+++ stable/10/sys/dev/sfxge/sfxge_dma.c	Sat Jun  4 17:08:34 2016	(r301388)
@@ -1,5 +1,5 @@
 /*-
- * Copyright (c) 2010-2015 Solarflare Communications Inc.
+ * Copyright (c) 2010-2016 Solarflare Communications Inc.
  * All rights reserved.
  *
  * This software was developed in part by Philip Paeps under contract for

Modified: stable/10/sys/dev/sfxge/sfxge_ev.c
==============================================================================
--- stable/10/sys/dev/sfxge/sfxge_ev.c	Sat Jun  4 17:05:20 2016	(r301387)
+++ stable/10/sys/dev/sfxge/sfxge_ev.c	Sat Jun  4 17:08:34 2016	(r301388)
@@ -1,5 +1,5 @@
 /*-
- * Copyright (c) 2010-2015 Solarflare Communications Inc.
+ * Copyright (c) 2010-2016 Solarflare Communications Inc.
  * All rights reserved.
  *
  * This software was developed in part by Philip Paeps under contract for

Modified: stable/10/sys/dev/sfxge/sfxge_intr.c
==============================================================================
--- stable/10/sys/dev/sfxge/sfxge_intr.c	Sat Jun  4 17:05:20 2016	(r301387)
+++ stable/10/sys/dev/sfxge/sfxge_intr.c	Sat Jun  4 17:08:34 2016	(r301388)
@@ -1,5 +1,5 @@
 /*-
- * Copyright (c) 2010-2015 Solarflare Communications Inc.
+ * Copyright (c) 2010-2016 Solarflare Communications Inc.
  * All rights reserved.
  *
  * This software was developed in part by Philip Paeps under contract for

Modified: stable/10/sys/dev/sfxge/sfxge_ioc.h
==============================================================================
--- stable/10/sys/dev/sfxge/sfxge_ioc.h	Sat Jun  4 17:05:20 2016	(r301387)
+++ stable/10/sys/dev/sfxge/sfxge_ioc.h	Sat Jun  4 17:08:34 2016	(r301388)
@@ -1,5 +1,5 @@
 /*-
- * Copyright (c) 2014-2015 Solarflare Communications Inc.
+ * Copyright (c) 2014-2016 Solarflare Communications Inc.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without

Modified: stable/10/sys/dev/sfxge/sfxge_mcdi.c
==============================================================================
--- stable/10/sys/dev/sfxge/sfxge_mcdi.c	Sat Jun  4 17:05:20 2016	(r301387)
+++ stable/10/sys/dev/sfxge/sfxge_mcdi.c	Sat Jun  4 17:08:34 2016	(r301388)
@@ -1,5 +1,5 @@
 /*-
- * Copyright (c) 2010-2015 Solarflare Communications Inc.
+ * Copyright (c) 2010-2016 Solarflare Communications Inc.
  * All rights reserved.
  *
  * This software was developed in part by Philip Paeps under contract for

Modified: stable/10/sys/dev/sfxge/sfxge_nvram.c
==============================================================================
--- stable/10/sys/dev/sfxge/sfxge_nvram.c	Sat Jun  4 17:05:20 2016	(r301387)
+++ stable/10/sys/dev/sfxge/sfxge_nvram.c	Sat Jun  4 17:08:34 2016	(r301388)
@@ -1,5 +1,5 @@
 /*-
- * Copyright (c) 2010-2015 Solarflare Communications, Inc.
+ * Copyright (c) 2010-2016 Solarflare Communications, Inc.
  * All rights reserved.
  *
  * This software was developed in part by OKTET Labs Ltd. under contract for

Modified: stable/10/sys/dev/sfxge/sfxge_port.c
==============================================================================
--- stable/10/sys/dev/sfxge/sfxge_port.c	Sat Jun  4 17:05:20 2016	(r301387)
+++ stable/10/sys/dev/sfxge/sfxge_port.c	Sat Jun  4 17:08:34 2016	(r301388)
@@ -1,5 +1,5 @@
 /*-
- * Copyright (c) 2010-2015 Solarflare Communications Inc.
+ * Copyright (c) 2010-2016 Solarflare Communications Inc.
  * All rights reserved.
  *
  * This software was developed in part by Philip Paeps under contract for

Modified: stable/10/sys/dev/sfxge/sfxge_rx.c
==============================================================================
--- stable/10/sys/dev/sfxge/sfxge_rx.c	Sat Jun  4 17:05:20 2016	(r301387)
+++ stable/10/sys/dev/sfxge/sfxge_rx.c	Sat Jun  4 17:08:34 2016	(r301388)
@@ -1,5 +1,5 @@
 /*-
- * Copyright (c) 2010-2015 Solarflare Communications Inc.
+ * Copyright (c) 2010-2016 Solarflare Communications Inc.
  * All rights reserved.
  *
  * This software was developed in part by Philip Paeps under contract for

Modified: stable/10/sys/dev/sfxge/sfxge_rx.h
==============================================================================
--- stable/10/sys/dev/sfxge/sfxge_rx.h	Sat Jun  4 17:05:20 2016	(r301387)
+++ stable/10/sys/dev/sfxge/sfxge_rx.h	Sat Jun  4 17:08:34 2016	(r301388)
@@ -1,5 +1,5 @@
 /*-
- * Copyright (c) 2010-2015 Solarflare Communications Inc.
+ * Copyright (c) 2010-2016 Solarflare Communications Inc.
  * All rights reserved.
  *
  * This software was developed in part by Philip Paeps under contract for

Modified: stable/10/sys/dev/sfxge/sfxge_tx.c
==============================================================================
--- stable/10/sys/dev/sfxge/sfxge_tx.c	Sat Jun  4 17:05:20 2016	(r301387)
+++ stable/10/sys/dev/sfxge/sfxge_tx.c	Sat Jun  4 17:08:34 2016	(r301388)
@@ -1,5 +1,5 @@
 /*-
- * Copyright (c) 2010-2015 Solarflare Communications Inc.
+ * Copyright (c) 2010-2016 Solarflare Communications Inc.
  * All rights reserved.
  *
  * This software was developed in part by Philip Paeps under contract for

Modified: stable/10/sys/dev/sfxge/sfxge_tx.h
==============================================================================
--- stable/10/sys/dev/sfxge/sfxge_tx.h	Sat Jun  4 17:05:20 2016	(r301387)
+++ stable/10/sys/dev/sfxge/sfxge_tx.h	Sat Jun  4 17:08:34 2016	(r301388)
@@ -1,5 +1,5 @@
 /*-
- * Copyright (c) 2010-2015 Solarflare Communications Inc.
+ * Copyright (c) 2010-2016 Solarflare Communications Inc.
  * All rights reserved.
  *
  * This software was developed in part by Philip Paeps under contract for

Modified: stable/10/sys/dev/sfxge/sfxge_version.h
==============================================================================
--- stable/10/sys/dev/sfxge/sfxge_version.h	Sat Jun  4 17:05:20 2016	(r301387)
+++ stable/10/sys/dev/sfxge/sfxge_version.h	Sat Jun  4 17:08:34 2016	(r301388)
@@ -1,5 +1,5 @@
 /*-
- * Copyright (c) 2015 Solarflare Communications Inc.
+ * Copyright (c) 2015-2016 Solarflare Communications Inc.
  * All rights reserved.
  *
  * This software was developed in part by OKTET Labs under contract for


More information about the svn-src-all mailing list