From c6872e69518e46697f834bc456b4435259e4d507 Mon Sep 17 00:00:00 2001 From: Alex Forencich Date: Sun, 7 Sep 2025 16:36:42 -0700 Subject: [PATCH] Update copyright dates Signed-off-by: Alex Forencich --- LICENSE | 2 +- cocotbext/eth/__init__.py | 2 +- cocotbext/eth/constants.py | 2 +- cocotbext/eth/eth_mac.py | 6 +++--- cocotbext/eth/gmii.py | 6 +++--- cocotbext/eth/mii.py | 6 +++--- cocotbext/eth/ptp.py | 6 +++--- cocotbext/eth/reset.py | 2 +- cocotbext/eth/rgmii.py | 6 +++--- cocotbext/eth/xgmii.py | 6 +++--- tests/eth_mac/Makefile | 2 +- tests/eth_mac/test_eth_mac.py | 2 +- tests/eth_mac/test_eth_mac.v | 2 +- tests/gmii/Makefile | 2 +- tests/gmii/test_gmii.py | 2 +- tests/gmii/test_gmii.v | 2 +- tests/gmii_phy/Makefile | 2 +- tests/gmii_phy/test_gmii_phy.py | 2 +- tests/gmii_phy/test_gmii_phy.v | 2 +- tests/mii/Makefile | 2 +- tests/mii/test_mii.py | 2 +- tests/mii/test_mii.v | 2 +- tests/mii_phy/Makefile | 2 +- tests/mii_phy/test_mii_phy.py | 2 +- tests/mii_phy/test_mii_phy.v | 2 +- tests/ptp_clock/Makefile | 2 +- tests/ptp_clock/test_ptp_clock.py | 2 +- tests/ptp_clock/test_ptp_clock.v | 2 +- tests/ptp_clock_sim_time/Makefile | 2 +- tests/ptp_clock_sim_time/test_ptp_clock_sim_time.py | 2 +- tests/ptp_clock_sim_time/test_ptp_clock_sim_time.v | 2 +- tests/rgmii/Makefile | 2 +- tests/rgmii/test_rgmii.py | 2 +- tests/rgmii/test_rgmii.v | 2 +- tests/rgmii_phy/Makefile | 2 +- tests/rgmii_phy/test_rgmii_phy.py | 2 +- tests/rgmii_phy/test_rgmii_phy.v | 2 +- tests/xgmii/Makefile | 2 +- tests/xgmii/test_xgmii.py | 2 +- tests/xgmii/test_xgmii.v | 2 +- 40 files changed, 52 insertions(+), 52 deletions(-) diff --git a/LICENSE b/LICENSE index 7affb14..a512a7f 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2020 Alex Forencich +Copyright (c) 2020-2025 Alex Forencich Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/cocotbext/eth/__init__.py b/cocotbext/eth/__init__.py index f4f11eb..c8052bd 100644 --- a/cocotbext/eth/__init__.py +++ b/cocotbext/eth/__init__.py @@ -1,6 +1,6 @@ """ -Copyright (c) 2020 Alex Forencich +Copyright (c) 2020-2025 Alex Forencich Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/cocotbext/eth/constants.py b/cocotbext/eth/constants.py index 6197658..e222ba8 100644 --- a/cocotbext/eth/constants.py +++ b/cocotbext/eth/constants.py @@ -1,6 +1,6 @@ """ -Copyright (c) 2020 Alex Forencich +Copyright (c) 2020-2025 Alex Forencich Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/cocotbext/eth/eth_mac.py b/cocotbext/eth/eth_mac.py index 3eff9fa..47407ac 100644 --- a/cocotbext/eth/eth_mac.py +++ b/cocotbext/eth/eth_mac.py @@ -1,6 +1,6 @@ """ -Copyright (c) 2021 Alex Forencich +Copyright (c) 2021-2025 Alex Forencich Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -140,7 +140,7 @@ class EthMacTx(Reset): self.log.info("Ethernet MAC TX model") self.log.info("cocotbext-eth version %s", __version__) - self.log.info("Copyright (c) 2020 Alex Forencich") + self.log.info("Copyright (c) 2021-2025 Alex Forencich") self.log.info("https://github.com/alexforencich/cocotbext-eth") super().__init__(*args, **kwargs) @@ -359,7 +359,7 @@ class EthMacRx(Reset): self.log.info("Ethernet MAC RX model") self.log.info("cocotbext-eth version %s", __version__) - self.log.info("Copyright (c) 2020 Alex Forencich") + self.log.info("Copyright (c) 2021-2025 Alex Forencich") self.log.info("https://github.com/alexforencich/cocotbext-eth") super().__init__(*args, **kwargs) diff --git a/cocotbext/eth/gmii.py b/cocotbext/eth/gmii.py index 25c3433..902da65 100644 --- a/cocotbext/eth/gmii.py +++ b/cocotbext/eth/gmii.py @@ -1,6 +1,6 @@ """ -Copyright (c) 2020 Alex Forencich +Copyright (c) 2020-2025 Alex Forencich Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -146,7 +146,7 @@ class GmiiSource(Reset): self.log.info("GMII source") self.log.info("cocotbext-eth version %s", __version__) - self.log.info("Copyright (c) 2020 Alex Forencich") + self.log.info("Copyright (c) 2020-2025 Alex Forencich") self.log.info("https://github.com/alexforencich/cocotbext-eth") super().__init__(*args, **kwargs) @@ -361,7 +361,7 @@ class GmiiSink(Reset): self.log.info("GMII sink") self.log.info("cocotbext-eth version %s", __version__) - self.log.info("Copyright (c) 2020 Alex Forencich") + self.log.info("Copyright (c) 2020-2025 Alex Forencich") self.log.info("https://github.com/alexforencich/cocotbext-eth") super().__init__(*args, **kwargs) diff --git a/cocotbext/eth/mii.py b/cocotbext/eth/mii.py index 596c7d1..9643aff 100644 --- a/cocotbext/eth/mii.py +++ b/cocotbext/eth/mii.py @@ -1,6 +1,6 @@ """ -Copyright (c) 2020 Alex Forencich +Copyright (c) 2020-2025 Alex Forencich Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -48,7 +48,7 @@ class MiiSource(Reset): self.log.info("MII source") self.log.info("cocotbext-eth version %s", __version__) - self.log.info("Copyright (c) 2020 Alex Forencich") + self.log.info("Copyright (c) 2020-2025 Alex Forencich") self.log.info("https://github.com/alexforencich/cocotbext-eth") super().__init__(*args, **kwargs) @@ -254,7 +254,7 @@ class MiiSink(Reset): self.log.info("MII sink") self.log.info("cocotbext-eth version %s", __version__) - self.log.info("Copyright (c) 2020 Alex Forencich") + self.log.info("Copyright (c) 2020-2025 Alex Forencich") self.log.info("https://github.com/alexforencich/cocotbext-eth") super().__init__(*args, **kwargs) diff --git a/cocotbext/eth/ptp.py b/cocotbext/eth/ptp.py index b132652..c1f4eed 100644 --- a/cocotbext/eth/ptp.py +++ b/cocotbext/eth/ptp.py @@ -1,6 +1,6 @@ """ -Copyright (c) 2020 Alex Forencich +Copyright (c) 2020-2025 Alex Forencich Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -58,7 +58,7 @@ class PtpClock(Reset): self.log.info("PTP clock") self.log.info("cocotbext-eth version %s", __version__) - self.log.info("Copyright (c) 2020 Alex Forencich") + self.log.info("Copyright (c) 2020-2025 Alex Forencich") self.log.info("https://github.com/alexforencich/cocotbext-eth") super().__init__(*args, **kwargs) @@ -285,7 +285,7 @@ class PtpClockSimTime: self.log.info("PTP clock (sim time)") self.log.info("cocotbext-eth version %s", __version__) - self.log.info("Copyright (c) 2020 Alex Forencich") + self.log.info("Copyright (c) 2020-2025 Alex Forencich") self.log.info("https://github.com/alexforencich/cocotbext-eth") super().__init__(*args, **kwargs) diff --git a/cocotbext/eth/reset.py b/cocotbext/eth/reset.py index 0938264..8d11fa3 100644 --- a/cocotbext/eth/reset.py +++ b/cocotbext/eth/reset.py @@ -1,6 +1,6 @@ """ -Copyright (c) 2020 Alex Forencich +Copyright (c) 2020-2025 Alex Forencich Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/cocotbext/eth/rgmii.py b/cocotbext/eth/rgmii.py index 36efdbe..34c0012 100644 --- a/cocotbext/eth/rgmii.py +++ b/cocotbext/eth/rgmii.py @@ -1,6 +1,6 @@ """ -Copyright (c) 2020 Alex Forencich +Copyright (c) 2020-2025 Alex Forencich Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -50,7 +50,7 @@ class RgmiiSource(Reset): self.log.info("RGMII source") self.log.info("cocotbext-eth version %s", __version__) - self.log.info("Copyright (c) 2020 Alex Forencich") + self.log.info("Copyright (c) 2020-2025 Alex Forencich") self.log.info("https://github.com/alexforencich/cocotbext-eth") super().__init__(*args, **kwargs) @@ -278,7 +278,7 @@ class RgmiiSink(Reset): self.log.info("RGMII sink") self.log.info("cocotbext-eth version %s", __version__) - self.log.info("Copyright (c) 2020 Alex Forencich") + self.log.info("Copyright (c) 2020-2025 Alex Forencich") self.log.info("https://github.com/alexforencich/cocotbext-eth") super().__init__(*args, **kwargs) diff --git a/cocotbext/eth/xgmii.py b/cocotbext/eth/xgmii.py index 45de500..bf78d23 100644 --- a/cocotbext/eth/xgmii.py +++ b/cocotbext/eth/xgmii.py @@ -1,6 +1,6 @@ """ -Copyright (c) 2020 Alex Forencich +Copyright (c) 2020-2025 Alex Forencich Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -147,7 +147,7 @@ class XgmiiSource(Reset): self.log.info("XGMII source") self.log.info("cocotbext-eth version %s", __version__) - self.log.info("Copyright (c) 2020 Alex Forencich") + self.log.info("Copyright (c) 2020-2025 Alex Forencich") self.log.info("https://github.com/alexforencich/cocotbext-eth") super().__init__(*args, **kwargs) @@ -390,7 +390,7 @@ class XgmiiSink(Reset): self.log.info("XGMII sink") self.log.info("cocotbext-eth version %s", __version__) - self.log.info("Copyright (c) 2020 Alex Forencich") + self.log.info("Copyright (c) 2020-2025 Alex Forencich") self.log.info("https://github.com/alexforencich/cocotbext-eth") super().__init__(*args, **kwargs) diff --git a/tests/eth_mac/Makefile b/tests/eth_mac/Makefile index 5f56983..dd8963a 100644 --- a/tests/eth_mac/Makefile +++ b/tests/eth_mac/Makefile @@ -1,4 +1,4 @@ -# Copyright (c) 2021 Alex Forencich +# Copyright (c) 2021-2025 Alex Forencich # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/tests/eth_mac/test_eth_mac.py b/tests/eth_mac/test_eth_mac.py index 8e66fd4..aa2d38e 100644 --- a/tests/eth_mac/test_eth_mac.py +++ b/tests/eth_mac/test_eth_mac.py @@ -1,7 +1,7 @@ #!/usr/bin/env python """ -Copyright (c) 2021 Alex Forencich +Copyright (c) 2021-2025 Alex Forencich Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/tests/eth_mac/test_eth_mac.v b/tests/eth_mac/test_eth_mac.v index f546222..350dda2 100644 --- a/tests/eth_mac/test_eth_mac.v +++ b/tests/eth_mac/test_eth_mac.v @@ -1,6 +1,6 @@ /* -Copyright (c) 2021 Alex Forencich +Copyright (c) 2021-2025 Alex Forencich Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/tests/gmii/Makefile b/tests/gmii/Makefile index fc5d8b9..c8ee83b 100644 --- a/tests/gmii/Makefile +++ b/tests/gmii/Makefile @@ -1,4 +1,4 @@ -# Copyright (c) 2020 Alex Forencich +# Copyright (c) 2020-2025 Alex Forencich # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/tests/gmii/test_gmii.py b/tests/gmii/test_gmii.py index 0ae2012..954a806 100644 --- a/tests/gmii/test_gmii.py +++ b/tests/gmii/test_gmii.py @@ -1,7 +1,7 @@ #!/usr/bin/env python """ -Copyright (c) 2020 Alex Forencich +Copyright (c) 2020-2025 Alex Forencich Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/tests/gmii/test_gmii.v b/tests/gmii/test_gmii.v index 9dbfb81..238f422 100644 --- a/tests/gmii/test_gmii.v +++ b/tests/gmii/test_gmii.v @@ -1,6 +1,6 @@ /* -Copyright (c) 2020 Alex Forencich +Copyright (c) 2020-2025 Alex Forencich Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/tests/gmii_phy/Makefile b/tests/gmii_phy/Makefile index eef6784..1847a17 100644 --- a/tests/gmii_phy/Makefile +++ b/tests/gmii_phy/Makefile @@ -1,4 +1,4 @@ -# Copyright (c) 2020 Alex Forencich +# Copyright (c) 2020-2025 Alex Forencich # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/tests/gmii_phy/test_gmii_phy.py b/tests/gmii_phy/test_gmii_phy.py index 9b0885e..af0740c 100644 --- a/tests/gmii_phy/test_gmii_phy.py +++ b/tests/gmii_phy/test_gmii_phy.py @@ -1,7 +1,7 @@ #!/usr/bin/env python """ -Copyright (c) 2020 Alex Forencich +Copyright (c) 2020-2025 Alex Forencich Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/tests/gmii_phy/test_gmii_phy.v b/tests/gmii_phy/test_gmii_phy.v index abc3318..3a3b2d1 100644 --- a/tests/gmii_phy/test_gmii_phy.v +++ b/tests/gmii_phy/test_gmii_phy.v @@ -1,6 +1,6 @@ /* -Copyright (c) 2020 Alex Forencich +Copyright (c) 2020-2025 Alex Forencich Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/tests/mii/Makefile b/tests/mii/Makefile index fec130b..03e6897 100644 --- a/tests/mii/Makefile +++ b/tests/mii/Makefile @@ -1,4 +1,4 @@ -# Copyright (c) 2020 Alex Forencich +# Copyright (c) 2020-2025 Alex Forencich # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/tests/mii/test_mii.py b/tests/mii/test_mii.py index ada3b04..cda0100 100644 --- a/tests/mii/test_mii.py +++ b/tests/mii/test_mii.py @@ -1,7 +1,7 @@ #!/usr/bin/env python """ -Copyright (c) 2020 Alex Forencich +Copyright (c) 2020-2025 Alex Forencich Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/tests/mii/test_mii.v b/tests/mii/test_mii.v index 0982049..54b72d1 100644 --- a/tests/mii/test_mii.v +++ b/tests/mii/test_mii.v @@ -1,6 +1,6 @@ /* -Copyright (c) 2020 Alex Forencich +Copyright (c) 2020-2025 Alex Forencich Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/tests/mii_phy/Makefile b/tests/mii_phy/Makefile index 9b0c907..653293e 100644 --- a/tests/mii_phy/Makefile +++ b/tests/mii_phy/Makefile @@ -1,4 +1,4 @@ -# Copyright (c) 2020 Alex Forencich +# Copyright (c) 2020 Alex-2025 Forencich # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/tests/mii_phy/test_mii_phy.py b/tests/mii_phy/test_mii_phy.py index 0a465ce..a2e0533 100644 --- a/tests/mii_phy/test_mii_phy.py +++ b/tests/mii_phy/test_mii_phy.py @@ -1,7 +1,7 @@ #!/usr/bin/env python """ -Copyright (c) 2020 Alex Forencich +Copyright (c) 2020-2025 Alex Forencich Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/tests/mii_phy/test_mii_phy.v b/tests/mii_phy/test_mii_phy.v index 93dd14f..f468ba8 100644 --- a/tests/mii_phy/test_mii_phy.v +++ b/tests/mii_phy/test_mii_phy.v @@ -1,6 +1,6 @@ /* -Copyright (c) 2020 Alex Forencich +Copyright (c) 2020-2025 Alex Forencich Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/tests/ptp_clock/Makefile b/tests/ptp_clock/Makefile index 869bebe..2e65bcb 100644 --- a/tests/ptp_clock/Makefile +++ b/tests/ptp_clock/Makefile @@ -1,4 +1,4 @@ -# Copyright (c) 2020 Alex Forencich +# Copyright (c) 2020-2025 Alex Forencich # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/tests/ptp_clock/test_ptp_clock.py b/tests/ptp_clock/test_ptp_clock.py index b66521a..5baa31f 100644 --- a/tests/ptp_clock/test_ptp_clock.py +++ b/tests/ptp_clock/test_ptp_clock.py @@ -1,7 +1,7 @@ #!/usr/bin/env python """ -Copyright (c) 2020 Alex Forencich +Copyright (c) 2020-2025 Alex Forencich Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/tests/ptp_clock/test_ptp_clock.v b/tests/ptp_clock/test_ptp_clock.v index ed92ced..f7567d5 100644 --- a/tests/ptp_clock/test_ptp_clock.v +++ b/tests/ptp_clock/test_ptp_clock.v @@ -1,6 +1,6 @@ /* -Copyright (c) 2020 Alex Forencich +Copyright (c) 2020-2025 Alex Forencich Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/tests/ptp_clock_sim_time/Makefile b/tests/ptp_clock_sim_time/Makefile index 01964ce..8494679 100644 --- a/tests/ptp_clock_sim_time/Makefile +++ b/tests/ptp_clock_sim_time/Makefile @@ -1,4 +1,4 @@ -# Copyright (c) 2020 Alex Forencich +# Copyright (c) 2020-2025 Alex Forencich # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/tests/ptp_clock_sim_time/test_ptp_clock_sim_time.py b/tests/ptp_clock_sim_time/test_ptp_clock_sim_time.py index c033121..9ca1fae 100644 --- a/tests/ptp_clock_sim_time/test_ptp_clock_sim_time.py +++ b/tests/ptp_clock_sim_time/test_ptp_clock_sim_time.py @@ -1,7 +1,7 @@ #!/usr/bin/env python """ -Copyright (c) 2021 Alex Forencich +Copyright (c) 2021-2025 Alex Forencich Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/tests/ptp_clock_sim_time/test_ptp_clock_sim_time.v b/tests/ptp_clock_sim_time/test_ptp_clock_sim_time.v index a58e4ae..bb7078f 100644 --- a/tests/ptp_clock_sim_time/test_ptp_clock_sim_time.v +++ b/tests/ptp_clock_sim_time/test_ptp_clock_sim_time.v @@ -1,6 +1,6 @@ /* -Copyright (c) 2021 Alex Forencich +Copyright (c) 2021-2025 Alex Forencich Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/tests/rgmii/Makefile b/tests/rgmii/Makefile index 30eda11..0128811 100644 --- a/tests/rgmii/Makefile +++ b/tests/rgmii/Makefile @@ -1,4 +1,4 @@ -# Copyright (c) 2020 Alex Forencich +# Copyright (c) 2020-2025 Alex Forencich # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/tests/rgmii/test_rgmii.py b/tests/rgmii/test_rgmii.py index 409a4d0..c348deb 100644 --- a/tests/rgmii/test_rgmii.py +++ b/tests/rgmii/test_rgmii.py @@ -1,7 +1,7 @@ #!/usr/bin/env python """ -Copyright (c) 2020 Alex Forencich +Copyright (c) 2020-2025 Alex Forencich Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/tests/rgmii/test_rgmii.v b/tests/rgmii/test_rgmii.v index 5d0551c..e5d1b04 100644 --- a/tests/rgmii/test_rgmii.v +++ b/tests/rgmii/test_rgmii.v @@ -1,6 +1,6 @@ /* -Copyright (c) 2020 Alex Forencich +Copyright (c) 2020-2025 Alex Forencich Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/tests/rgmii_phy/Makefile b/tests/rgmii_phy/Makefile index a3e3735..cb1e696 100644 --- a/tests/rgmii_phy/Makefile +++ b/tests/rgmii_phy/Makefile @@ -1,4 +1,4 @@ -# Copyright (c) 2020 Alex Forencich +# Copyright (c) 2020-2025 Alex Forencich # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/tests/rgmii_phy/test_rgmii_phy.py b/tests/rgmii_phy/test_rgmii_phy.py index ba9df82..f9d0135 100644 --- a/tests/rgmii_phy/test_rgmii_phy.py +++ b/tests/rgmii_phy/test_rgmii_phy.py @@ -1,7 +1,7 @@ #!/usr/bin/env python """ -Copyright (c) 2020 Alex Forencich +Copyright (c) 2020-2025 Alex Forencich Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/tests/rgmii_phy/test_rgmii_phy.v b/tests/rgmii_phy/test_rgmii_phy.v index 1280d38..a0f413a 100644 --- a/tests/rgmii_phy/test_rgmii_phy.v +++ b/tests/rgmii_phy/test_rgmii_phy.v @@ -1,6 +1,6 @@ /* -Copyright (c) 2020 Alex Forencich +Copyright (c) 2020-2025 Alex Forencich Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/tests/xgmii/Makefile b/tests/xgmii/Makefile index d90edc3..9f10a42 100644 --- a/tests/xgmii/Makefile +++ b/tests/xgmii/Makefile @@ -1,4 +1,4 @@ -# Copyright (c) 2020 Alex Forencich +# Copyright (c) 2020-2025 Alex Forencich # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/tests/xgmii/test_xgmii.py b/tests/xgmii/test_xgmii.py index 857fd25..9854311 100644 --- a/tests/xgmii/test_xgmii.py +++ b/tests/xgmii/test_xgmii.py @@ -1,7 +1,7 @@ #!/usr/bin/env python """ -Copyright (c) 2020 Alex Forencich +Copyright (c) 2020-2025 Alex Forencich Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/tests/xgmii/test_xgmii.v b/tests/xgmii/test_xgmii.v index 5fbaab0..aa03be8 100644 --- a/tests/xgmii/test_xgmii.v +++ b/tests/xgmii/test_xgmii.v @@ -1,6 +1,6 @@ /* -Copyright (c) 2020 Alex Forencich +Copyright (c) 2020-2025 Alex Forencich Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal