The branch stable/15 has been updated by gbe:

URL: 
https://cgit.FreeBSD.org/src/commit/?id=3861268596cecb97b267bbc699df532ceccbb6af

commit 3861268596cecb97b267bbc699df532ceccbb6af
Author:     Gordon Bergling <[email protected]>
AuthorDate: 2025-10-29 08:29:08 +0000
Commit:     Gordon Bergling <[email protected]>
CommitDate: 2025-11-08 19:02:51 +0000

    aic7xxx: Fix a couple of typos in device messages
    
    - s/Reseting/Resetting/
    - s/staus/status/
    - s/referrenced/referenced/
    
    (cherry picked from commit d1e39f3d6e5fce1a30a5713d522f87d83654c4bd)
---
 sys/dev/aic7xxx/aic79xx.c | 6 +++---
 sys/dev/aic7xxx/aic7xxx.c | 4 ++--
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/sys/dev/aic7xxx/aic79xx.c b/sys/dev/aic7xxx/aic79xx.c
index 2b5015b20e41..c5656177862f 100644
--- a/sys/dev/aic7xxx/aic79xx.c
+++ b/sys/dev/aic7xxx/aic79xx.c
@@ -2015,7 +2015,7 @@ ahd_handle_lqiphase_error(struct ahd_softc *ahd, u_int 
lqistat1)
                ahd_outb(ahd, CLRINT, CLRSCSIINT);
                ahd_unpause(ahd);
        } else {
-               printf("Reseting Channel for LQI Phase error\n");
+               printf("Resetting Channel for LQI Phase error\n");
                AHD_CORRECTABLE_ERROR(ahd);
                ahd_dump_card_state(ahd);
                ahd_reset_channel(ahd, 'A', /*Initiate Reset*/TRUE);
@@ -8179,7 +8179,7 @@ ahd_handle_scsi_status(struct ahd_softc *ahd, struct scb 
*scb)
                                        AHD_UNCORRECTABLE_ERROR(ahd);
                                        break;
                                case SIU_PFC_TMF_NOT_SUPPORTED:
-                                       printf("TMF not supportd\n");
+                                       printf("TMF not supported\n");
                                        AHD_UNCORRECTABLE_ERROR(ahd);
                                        break;
                                case SIU_PFC_TMF_FAILED:
@@ -8313,7 +8313,7 @@ ahd_handle_scsi_status(struct ahd_softc *ahd, struct scb 
*scb)
                break;
        }
        case SCSI_STATUS_OK:
-               printf("%s: Interrupted for staus of 0???\n",
+               printf("%s: Interrupted for status of 0???\n",
                       ahd_name(ahd));
                /* FALLTHROUGH */
        default:
diff --git a/sys/dev/aic7xxx/aic7xxx.c b/sys/dev/aic7xxx/aic7xxx.c
index c09876e9f589..31b07d61e9f4 100644
--- a/sys/dev/aic7xxx/aic7xxx.c
+++ b/sys/dev/aic7xxx/aic7xxx.c
@@ -78,7 +78,7 @@ struct ahc_hard_error_entry {
 
 static struct ahc_hard_error_entry ahc_hard_errors[] = {
        { ILLHADDR,     "Illegal Host Access" },
-       { ILLSADDR,     "Illegal Sequencer Address referrenced" },
+       { ILLSADDR,     "Illegal Sequencer Address referenced" },
        { ILLOPCODE,    "Illegal Opcode in sequencer program" },
        { SQPARERR,     "Sequencer Parity Error" },
        { DPARERR,      "Data-path Parity Error" },
@@ -476,7 +476,7 @@ ahc_handle_seqint(struct ahc_softc *ahc, u_int intstat)
                aic_set_scsi_status(scb, hscb->shared_data.status.scsi_status);
                switch (hscb->shared_data.status.scsi_status) {
                case SCSI_STATUS_OK:
-                       printf("%s: Interrupted for staus of 0???\n",
+                       printf("%s: Interrupted for status of 0???\n",
                               ahc_name(ahc));
                        break;
                case SCSI_STATUS_CMD_TERMINATED:

Reply via email to