From f9c5c12d24cc3a9da5c1d38e69a8aa5f58224c4a Mon Sep 17 00:00:00 2001
From: Georg-Johann Lay <avr@gjlay.de>
Date: Sun, 1 Sep 2024 17:19:38 +0200
Subject: [PATCH] AVR: Remove "Atmel" from header comment.

gcc/
	* config/avr/avr.h: Remove "Atmel" from header comment.
	* config/avr/avr.cc: Same.
	* config/avr/avr.md: Same.
	* config/avr/avr.opt: Same.
	* config/avr/avr-dimode.md: Same.
	* config/avr/avr-fixed.md: Same.
	* config/avr/constraints.md: Same.
	* config/avr/predicates.md: Same.
	* config/avr/avr-log.cc: Same.
	* config/avr/avrlibc.h: Same.
	* config/avr/specs.h: Same.
	* common/config/avr/avr-common.cc: Same.
	* doc/install.texi: Same.
	* config/avr/avr-arch.h: Adjust header comment.
	* config/avr/avr-c.cc: Same.
	* config/avr/avr-mcus.def: Same.
	* config/avr/avr-modes.def: Same.
	* config/avr/avr-passes.cc: Same.
	* config/avr/avr-passes.def: Same.
	* config/avr/avr-protos.h: Same.
	* config/avr/driver-avr.cc: Same.
	* config/avr/elf.h: Same.
	* config/avr/gen-avr-mmcu-specs.cc: Same.
	* config/avr/gen-avr-mmcu-texi.cc: Same.
---
 gcc/common/config/avr/avr-common.cc  | 2 +-
 gcc/config/avr/avr-arch.h            | 3 +--
 gcc/config/avr/avr-c.cc              | 3 ++-
 gcc/config/avr/avr-dimode.md         | 3 +--
 gcc/config/avr/avr-fixed.md          | 3 +--
 gcc/config/avr/avr-log.cc            | 2 +-
 gcc/config/avr/avr-mcus.def          | 2 +-
 gcc/config/avr/avr-modes.def         | 3 ++-
 gcc/config/avr/avr-passes.cc         | 2 +-
 gcc/config/avr/avr-passes.def        | 2 +-
 gcc/config/avr/avr-protos.h          | 3 +--
 gcc/config/avr/avr.cc                | 2 +-
 gcc/config/avr/avr.h                 | 2 +-
 gcc/config/avr/avr.md                | 2 +-
 gcc/config/avr/avr.opt               | 2 +-
 gcc/config/avr/avrlibc.h             | 3 +--
 gcc/config/avr/constraints.md        | 2 +-
 gcc/config/avr/driver-avr.cc         | 2 +-
 gcc/config/avr/elf.h                 | 3 ++-
 gcc/config/avr/gen-avr-mmcu-specs.cc | 3 ++-
 gcc/config/avr/gen-avr-mmcu-texi.cc  | 3 ++-
 gcc/config/avr/predicates.md         | 2 +-
 gcc/config/avr/specs.h               | 2 +-
 gcc/doc/install.texi                 | 2 +-
 24 files changed, 29 insertions(+), 29 deletions(-)

diff --git a/gcc/common/config/avr/avr-common.cc b/gcc/common/config/avr/avr-common.cc
index fdf130f1e1ae..bb454a208568 100644
--- a/gcc/common/config/avr/avr-common.cc
+++ b/gcc/common/config/avr/avr-common.cc
@@ -1,4 +1,4 @@
-/* Common hooks for ATMEL AVR.
+/* Common hooks for AVR 8-bit microcontrollers.
    Copyright (C) 1998-2024 Free Software Foundation, Inc.
 
    This file is part of GCC.
diff --git a/gcc/config/avr/avr-arch.h b/gcc/config/avr/avr-arch.h
index 69e8db1fcfe2..e7c02ebfbb06 100644
--- a/gcc/config/avr/avr-arch.h
+++ b/gcc/config/avr/avr-arch.h
@@ -1,5 +1,4 @@
-/* Definitions of types that are used to store AVR architecture and
-   device information.
+/* Device information for AVR 8-bit microcontrollers.
    Copyright (C) 2012-2024 Free Software Foundation, Inc.
    Contributed by Georg-Johann Lay (avr@gjlay.de)
 
diff --git a/gcc/config/avr/avr-c.cc b/gcc/config/avr/avr-c.cc
index ca484f26132a..34c73c6bf552 100644
--- a/gcc/config/avr/avr-c.cc
+++ b/gcc/config/avr/avr-c.cc
@@ -1,4 +1,5 @@
-/* Copyright (C) 2009-2024 Free Software Foundation, Inc.
+/* Code for the C/C++ front end for AVR 8-bit microcontrollers.
+   Copyright (C) 2009-2024 Free Software Foundation, Inc.
    Contributed by Anatoly Sokolov (aesok@post.ru)
 
    This file is part of GCC.
diff --git a/gcc/config/avr/avr-dimode.md b/gcc/config/avr/avr-dimode.md
index c357213e211a..e6284ced45df 100644
--- a/gcc/config/avr/avr-dimode.md
+++ b/gcc/config/avr/avr-dimode.md
@@ -1,5 +1,4 @@
-;;   Machine description for GNU compiler,
-;;   for Atmel AVR micro controllers.
+;;   Support 64-bit operations for AVR 8-bit microcontrollers.
 ;;   Copyright (C) 1998-2024 Free Software Foundation, Inc.
 ;;   Contributed by Georg Lay (avr@gjlay.de)
 ;;
diff --git a/gcc/config/avr/avr-fixed.md b/gcc/config/avr/avr-fixed.md
index 911b8b2cd67c..eb83751a768e 100644
--- a/gcc/config/avr/avr-fixed.md
+++ b/gcc/config/avr/avr-fixed.md
@@ -1,5 +1,4 @@
-;;   This file contains instructions that support fixed-point operations
-;;   for Atmel AVR micro controllers.
+;;   Support fixed-point operations for AVR 8-bit microcontrollers.
 ;;   Copyright (C) 2012-2024 Free Software Foundation, Inc.
 ;;
 ;;   Contributed by Sean D'Epagnier  (sean@depagnier.com)
diff --git a/gcc/config/avr/avr-log.cc b/gcc/config/avr/avr-log.cc
index d702c5f3fd86..5aacab19e388 100644
--- a/gcc/config/avr/avr-log.cc
+++ b/gcc/config/avr/avr-log.cc
@@ -1,4 +1,4 @@
-/* Subroutines for log output for Atmel AVR back end.
+/* Subroutines for log output for AVR 8-bit microcontrollers.
    Copyright (C) 2011-2024 Free Software Foundation, Inc.
    Contributed by Georg-Johann Lay (avr@gjlay.de)
 
diff --git a/gcc/config/avr/avr-mcus.def b/gcc/config/avr/avr-mcus.def
index 068875a2c60e..f7401ab3b09a 100644
--- a/gcc/config/avr/avr-mcus.def
+++ b/gcc/config/avr/avr-mcus.def
@@ -1,4 +1,4 @@
-/* AVR MCUs.
+/* Information on supported AVR 8-bit microcontrollers.
    Copyright (C) 2009-2024 Free Software Foundation, Inc.
 
    This file is part of GCC.
diff --git a/gcc/config/avr/avr-modes.def b/gcc/config/avr/avr-modes.def
index b756beae9a0c..e69636a60991 100644
--- a/gcc/config/avr/avr-modes.def
+++ b/gcc/config/avr/avr-modes.def
@@ -1,4 +1,5 @@
-/* Copyright (C) 2012-2024 Free Software Foundation, Inc.
+/* Extra machine modes for AVR 8-bit microcontrollers.
+   Copyright (C) 2012-2024 Free Software Foundation, Inc.
 
    This file is part of GCC.
 
diff --git a/gcc/config/avr/avr-passes.cc b/gcc/config/avr/avr-passes.cc
index 8a71b57ada10..95b8e9a7529b 100644
--- a/gcc/config/avr/avr-passes.cc
+++ b/gcc/config/avr/avr-passes.cc
@@ -1,4 +1,4 @@
-/* Functions and methods for avr specific passes registered in avr-passes.def.
+/* Support for avr-passes.def for AVR 8-bit microcontrollers.
    Copyright (C) 2024 Free Software Foundation, Inc.
 
    This file is part of GCC.
diff --git a/gcc/config/avr/avr-passes.def b/gcc/config/avr/avr-passes.def
index cd89d6737276..d39bdd89a11b 100644
--- a/gcc/config/avr/avr-passes.def
+++ b/gcc/config/avr/avr-passes.def
@@ -1,4 +1,4 @@
-/* Description of target passes for AVR.
+/* Description of target passes for AVR 8-bit microcontrollers.
    Copyright (C) 2016-2024 Free Software Foundation, Inc. */
 
 /* This file is part of GCC.
diff --git a/gcc/config/avr/avr-protos.h b/gcc/config/avr/avr-protos.h
index d6f4abbac669..71c110c791ff 100644
--- a/gcc/config/avr/avr-protos.h
+++ b/gcc/config/avr/avr-protos.h
@@ -1,5 +1,4 @@
-/* Prototypes for exported functions defined in avr.cc
-   
+/* Prototypes for tm_p.h for AVR 8-bit microcontrollers.
    Copyright (C) 2000-2024 Free Software Foundation, Inc.
    Contributed by Denis Chertykov (chertykov@gmail.com)
 
diff --git a/gcc/config/avr/avr.cc b/gcc/config/avr/avr.cc
index 079db62695dc..1f809d8e1e3b 100644
--- a/gcc/config/avr/avr.cc
+++ b/gcc/config/avr/avr.cc
@@ -1,4 +1,4 @@
-/* Subroutines for insn-output.cc for ATMEL AVR micro controllers
+/* Subroutines for insn-output.cc for AVR 8-bit microcontrollers
    Copyright (C) 1998-2024 Free Software Foundation, Inc.
    Contributed by Denis Chertykov (chertykov@gmail.com)
 
diff --git a/gcc/config/avr/avr.h b/gcc/config/avr/avr.h
index 56b7f39b8344..1cf4180e5343 100644
--- a/gcc/config/avr/avr.h
+++ b/gcc/config/avr/avr.h
@@ -1,5 +1,5 @@
 /* Definitions of target machine for GNU compiler,
-   for ATMEL AVR at90s8515, ATmega103/103L, ATmega603/603L microcontrollers.
+   for AVR 8-bit microcontrollers.
    Copyright (C) 1998-2024 Free Software Foundation, Inc.
    Contributed by Denis Chertykov (chertykov@gmail.com)
 
diff --git a/gcc/config/avr/avr.md b/gcc/config/avr/avr.md
index 520f1fe41a21..429f537b7d4f 100644
--- a/gcc/config/avr/avr.md
+++ b/gcc/config/avr/avr.md
@@ -1,5 +1,5 @@
 ;;   Machine description for GNU compiler,
-;;   for ATMEL AVR micro controllers.
+;;   for AVR 8-bit microcontrollers.
 ;;   Copyright (C) 1998-2024 Free Software Foundation, Inc.
 ;;   Contributed by Denis Chertykov (chertykov@gmail.com)
 
diff --git a/gcc/config/avr/avr.opt b/gcc/config/avr/avr.opt
index 444ed7edb26b..625323f4e6a6 100644
--- a/gcc/config/avr/avr.opt
+++ b/gcc/config/avr/avr.opt
@@ -1,4 +1,4 @@
-; Options for the ATMEL AVR port of the compiler.
+; Options for AVR 8-bit microcontrollers.
 
 ; Copyright (C) 2005-2024 Free Software Foundation, Inc.
 ;
diff --git a/gcc/config/avr/avrlibc.h b/gcc/config/avr/avrlibc.h
index fb4ffedcc91f..60fce70201c6 100644
--- a/gcc/config/avr/avrlibc.h
+++ b/gcc/config/avr/avrlibc.h
@@ -1,5 +1,4 @@
-/* Definitions of target machine for the GNU compiler collection
-   for Atmel AVR micro controller if configured for AVR-Libc.
+/* Definitions for AVR 8-bit microcontrollers if configured for AVR-LibC.
    Copyright (C) 2012-2024 Free Software Foundation, Inc.
    Contributed by Georg-Johann Lay (avr@gjlay.de)
 
diff --git a/gcc/config/avr/constraints.md b/gcc/config/avr/constraints.md
index 963e23a4d9ed..9512302c252e 100644
--- a/gcc/config/avr/constraints.md
+++ b/gcc/config/avr/constraints.md
@@ -1,4 +1,4 @@
-;; Constraint definitions for ATMEL AVR micro controllers.
+;; Insn constraint definitions for AVR 8-bit microcontrollers.
 ;; Copyright (C) 2006-2024 Free Software Foundation, Inc.
 ;;
 ;; This file is part of GCC.
diff --git a/gcc/config/avr/driver-avr.cc b/gcc/config/avr/driver-avr.cc
index 92e875a66c9e..4dcabc604e85 100644
--- a/gcc/config/avr/driver-avr.cc
+++ b/gcc/config/avr/driver-avr.cc
@@ -1,4 +1,4 @@
-/* Subroutines for the gcc driver.
+/* Subroutines for the gcc driver for AVR 8-bit microcontrollers.
    Copyright (C) 2009-2024 Free Software Foundation, Inc.
    Contributed by Georg-Johann Lay <avr@gjlay.de>
 
diff --git a/gcc/config/avr/elf.h b/gcc/config/avr/elf.h
index 0112aa3d4327..794f4c9fc0fb 100644
--- a/gcc/config/avr/elf.h
+++ b/gcc/config/avr/elf.h
@@ -1,4 +1,5 @@
-/* Copyright (C) 2011-2024 Free Software Foundation, Inc.
+/* Overrides for elfos.h for AVR 8-bit microcontrollers.
+   Copyright (C) 2011-2024 Free Software Foundation, Inc.
    Contributed by Georg-Johann Lay (avr@gjlay.de)
 
    This file is part of GCC.
diff --git a/gcc/config/avr/gen-avr-mmcu-specs.cc b/gcc/config/avr/gen-avr-mmcu-specs.cc
index bb94bea12b00..af519c9d87ae 100644
--- a/gcc/config/avr/gen-avr-mmcu-specs.cc
+++ b/gcc/config/avr/gen-avr-mmcu-specs.cc
@@ -1,4 +1,5 @@
-/* Copyright (C) 1998-2024 Free Software Foundation, Inc.
+/* Build device-specs for AVR 8-bit microcontrollers.
+   Copyright (C) 1998-2024 Free Software Foundation, Inc.
    Contributed by Joern Rennecke
 
    This file is part of GCC.
diff --git a/gcc/config/avr/gen-avr-mmcu-texi.cc b/gcc/config/avr/gen-avr-mmcu-texi.cc
index 70aa430902eb..597ba22ccaac 100644
--- a/gcc/config/avr/gen-avr-mmcu-texi.cc
+++ b/gcc/config/avr/gen-avr-mmcu-texi.cc
@@ -1,4 +1,5 @@
-/* Copyright (C) 2012-2024 Free Software Foundation, Inc.
+/* Build texi documentation for option -mmcu for AVR 8-bit microcontrollers.
+   Copyright (C) 2012-2024 Free Software Foundation, Inc.
    Contributed by Georg-Johann Lay (avr@gjlay.de)
 
    This file is part of GCC.
diff --git a/gcc/config/avr/predicates.md b/gcc/config/avr/predicates.md
index b21acbe323f9..c44ebffc7628 100644
--- a/gcc/config/avr/predicates.md
+++ b/gcc/config/avr/predicates.md
@@ -1,4 +1,4 @@
-;; Predicate definitions for ATMEL AVR micro controllers.
+;; Insn predicate definitions for AVR 8-bit microcontrollers.
 ;; Copyright (C) 2006-2024 Free Software Foundation, Inc.
 ;;
 ;; This file is part of GCC.
diff --git a/gcc/config/avr/specs.h b/gcc/config/avr/specs.h
index 0ccc37b8844a..a1e2c384a743 100644
--- a/gcc/config/avr/specs.h
+++ b/gcc/config/avr/specs.h
@@ -1,4 +1,4 @@
-/* Specs definitions for Atmel AVR back end.
+/* Specs definitions for AVR 8-bit microcontrollers.
 
    Copyright (C) 2012-2024 Free Software Foundation, Inc.
    Contributed by Georg-Johann Lay (avr@gjlay.de)
diff --git a/gcc/doc/install.texi b/gcc/doc/install.texi
index d22ccdd96672..62a611045985 100644
--- a/gcc/doc/install.texi
+++ b/gcc/doc/install.texi
@@ -3999,7 +3999,7 @@ GNAT 4.6, 4.9 or 5 release branches are known to succeed.
 @end html
 @anchor{avr}
 @heading avr
-ATMEL AVR-family micro controllers.  These are used in embedded
+AVR 8-bit microcontrollers.  These are used in embedded
 applications.  There are no standard Unix configurations.
 @ifnothtml
 @xref{AVR Options,, AVR Options, gcc, Using the GNU Compiler
-- 
GitLab