diff options
author | brucec <brucec@FreeBSD.org> | 2011-02-21 09:01:34 +0000 |
---|---|---|
committer | brucec <brucec@FreeBSD.org> | 2011-02-21 09:01:34 +0000 |
commit | 6d9b42b4862ca331b22065d875de9cad9da72658 (patch) | |
tree | 1f08a200604ea39c38fc67b8558b5638a6dfba0d /sys/dev/ctau | |
parent | 879ce9c16d5491279b3bcbf139b4b4a967fb3fab (diff) | |
download | FreeBSD-src-6d9b42b4862ca331b22065d875de9cad9da72658.zip FreeBSD-src-6d9b42b4862ca331b22065d875de9cad9da72658.tar.gz |
Fix typos - remove duplicate "the".
PR: bin/154928
Submitted by: Eitan Adler <lists at eitanadler.com>
MFC after: 3 days
Diffstat (limited to 'sys/dev/ctau')
-rw-r--r-- | sys/dev/ctau/ctau.c | 2 | ||||
-rw-r--r-- | sys/dev/ctau/ctddk.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ctau/ctau.c b/sys/dev/ctau/ctau.c index 9b4f404..6a6b65d 100644 --- a/sys/dev/ctau/ctau.c +++ b/sys/dev/ctau/ctau.c @@ -1734,7 +1734,7 @@ ct_board_opt_t ct_board_opt_dflt = { 0, /* board control register 2 */ { /* DMA priority control register */ PCR_PRIO_ROTATE, - 0, /* all channels share the the bus hold */ + 0, /* all channels share the bus hold */ 0, /* hold the bus until all transfers done */ }, CFG_A, /* E1/G.703 config: two independent channels */ diff --git a/sys/dev/ctau/ctddk.h b/sys/dev/ctau/ctddk.h index be0a092..2d53dee 100644 --- a/sys/dev/ctau/ctddk.h +++ b/sys/dev/ctau/ctddk.h @@ -206,7 +206,7 @@ typedef struct { typedef struct { unsigned prio : 3; /* priority of channels */ unsigned noshare : 1; /* 1 - chan holds the bus until end of data */ - /* 0 - all channels share the the bus hold */ + /* 0 - all channels share the bus hold */ unsigned release : 1; /* 1 - release the bus between transfers */ /* 0 - hold the bus until all transfers done */ } ct_pcr_t; |