Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

mISDN: Fix typos

Fix typos:
- syncronized -> synchronized
- interfacs -> interface
- otherwhise -> otherwise
- ony -> only
- busses -> buses
- maxinum -> maximum

Via codespell.

Reported-by: Simon Horman <horms@kernel.org>
Signed-off-by: Andrew Kreimer <algonell@gmail.com>
Reviewed-by: Simon Horman <horms@kernel.org>
Link: https://patch.msgid.link/20241106112513.9559-1-algonell@gmail.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>

authored by

Andrew Kreimer and committed by
Jakub Kicinski
2b08dfcc e629295b

+8 -8
+8 -8
drivers/isdn/hardware/mISDN/hfcmulti.c
··· 25 25 * Bit 8 = 0x00100 = uLaw (instead of aLaw) 26 26 * Bit 9 = 0x00200 = Disable DTMF detect on all B-channels via hardware 27 27 * Bit 10 = spare 28 - * Bit 11 = 0x00800 = Force PCM bus into slave mode. (otherwhise auto) 29 - * or Bit 12 = 0x01000 = Force PCM bus into master mode. (otherwhise auto) 28 + * Bit 11 = 0x00800 = Force PCM bus into slave mode. (otherwise auto) 29 + * or Bit 12 = 0x01000 = Force PCM bus into master mode. (otherwise auto) 30 30 * Bit 13 = spare 31 31 * Bit 14 = 0x04000 = Use external ram (128K) 32 32 * Bit 15 = 0x08000 = Use external ram (512K) ··· 41 41 * port: (optional or required for all ports on all installed cards) 42 42 * HFC-4S/HFC-8S only bits: 43 43 * Bit 0 = 0x001 = Use master clock for this S/T interface 44 - * (ony once per chip). 44 + * (only once per chip). 45 45 * Bit 1 = 0x002 = transmitter line setup (non capacitive mode) 46 46 * Don't use this unless you know what you are doing! 47 47 * Bit 2 = 0x004 = Disable E-channel. (No E-channel processing) ··· 82 82 * By default (0), the PCM bus id is 100 for the card that is PCM master. 83 83 * If multiple cards are PCM master (because they are not interconnected), 84 84 * each card with PCM master will have increasing PCM id. 85 - * All PCM busses with the same ID are expected to be connected and have 85 + * All PCM buses with the same ID are expected to be connected and have 86 86 * common time slots slots. 87 87 * Only one chip of the PCM bus must be master, the others slave. 88 88 * -1 means no support of PCM bus not even. ··· 930 930 if (newmaster) { 931 931 hc = newmaster; 932 932 if (debug & DEBUG_HFCMULTI_PLXSD) 933 - printk(KERN_DEBUG "id=%d (0x%p) = syncronized with " 933 + printk(KERN_DEBUG "id=%d (0x%p) = synchronized with " 934 934 "interface.\n", hc->id, hc); 935 935 /* Enable new sync master */ 936 936 plx_acc_32 = hc->plx_membase + PLX_GPIOC; ··· 949 949 hc = pcmmaster; 950 950 if (debug & DEBUG_HFCMULTI_PLXSD) 951 951 printk(KERN_DEBUG 952 - "id=%d (0x%p) = PCM master syncronized " 952 + "id=%d (0x%p) = PCM master synchronized " 953 953 "with QUARTZ\n", hc->id, hc); 954 954 if (hc->ctype == HFC_TYPE_E1) { 955 955 /* Use the crystal clock for the PCM ··· 2001 2001 if (Zspace <= 0) 2002 2002 Zspace += hc->Zlen; 2003 2003 Zspace -= 4; /* keep not too full, so pointers will not overrun */ 2004 - /* fill transparent data only to maxinum transparent load (minus 4) */ 2004 + /* fill transparent data only to maximum transparent load (minus 4) */ 2005 2005 if (bch && test_bit(FLG_TRANSPARENT, &bch->Flags)) 2006 2006 Zspace = Zspace - hc->Zlen + hc->max_trans; 2007 2007 if (Zspace <= 0) /* no space of 4 bytes */ ··· 4672 4672 if (debug & DEBUG_HFCMULTI_INIT) 4673 4673 printk(KERN_DEBUG 4674 4674 "%s: PORT set optical " 4675 - "interfacs: card(%d) " 4675 + "interface: card(%d) " 4676 4676 "port(%d)\n", 4677 4677 __func__, 4678 4678 HFC_cnt + 1, 1);