···22http://www.digi.com for PCI cards. They no longer maintain this driver,33and have no 2.6 driver for ISA cards.4455-This driver requires a number of user-space tools. They can be aquired from55+This driver requires a number of user-space tools. They can be acquired from66http://www.digi.com, but only works with 2.4 kernels.7788
···30483048 </para>3049304930503050 <para>30513051- If you aquire a spinlock in the interrupt handler, and the30513051+ If you acquire a spinlock in the interrupt handler, and the30523052 lock is used in other pcm callbacks, too, then you have to30533053 release the lock before calling30543054 <function>snd_pcm_period_elapsed()</function>, because
+2-2
drivers/char/isicom.c
···245245 printk(KERN_WARNING "ISICOM: Failed to lock Card (0x%lx)\n",246246 card->base);247247248248- return 0; /* Failed to aquire the card! */248248+ return 0; /* Failed to acquire the card! */249249}250250251251static int lock_card_at_interrupt(struct isi_board *card)···262262 spin_unlock_irqrestore(&card->card_lock, card->flags);263263 }264264 /* Failing in interrupt is an acceptable event */265265- return 0; /* Failed to aquire the card! */265265+ return 0; /* Failed to acquire the card! */266266}267267268268static void unlock_card(struct isi_board *card)
+1-1
drivers/media/video/bt8xx/bttvp.h
···360360 int mbox_csel;361361362362 /* risc memory management data363363- - must aquire s_lock before changing these363363+ - must acquire s_lock before changing these364364 - only the irq handler is supported to touch top + bottom + vcurr */365365 struct btcx_riscmem main;366366 struct bttv_buffer *screen; /* overlay */
+1-1
drivers/scsi/qla2xxx/qla_def.h
···21342134 mempool_t *srb_mempool;2135213521362136 /* This spinlock is used to protect "io transactions", you must21372137- * aquire it before doing any IO to the card, eg with RD_REG*() and21372137+ * acquire it before doing any IO to the card, eg with RD_REG*() and21382138 * WRT_REG*() for the duration of your entire commandtransaction.21392139 *21402140 * This spinlock is of lower priority than the io request lock.
+19-19
fs/befs/linuxvfs.c
···325325 if (!bh) {326326 befs_error(sb, "unable to read inode block - "327327 "inode = %lu", inode->i_ino);328328- goto unaquire_none;328328+ goto unacquire_none;329329 }330330331331 raw_inode = (befs_inode *) bh->b_data;···334334335335 if (befs_check_inode(sb, raw_inode, inode->i_ino) != BEFS_OK) {336336 befs_error(sb, "Bad inode: %lu", inode->i_ino);337337- goto unaquire_bh;337337+ goto unacquire_bh;338338 }339339340340 inode->i_mode = (umode_t) fs32_to_cpu(sb, raw_inode->mode);···402402 befs_error(sb, "Inode %lu is not a regular file, "403403 "directory or symlink. THAT IS WRONG! BeFS has no "404404 "on disk special files", inode->i_ino);405405- goto unaquire_bh;405405+ goto unacquire_bh;406406 }407407408408 brelse(bh);409409 befs_debug(sb, "<--- befs_read_inode()");410410 return;411411412412- unaquire_bh:412412+ unacquire_bh:413413 brelse(bh);414414415415- unaquire_none:415415+ unacquire_none:416416 make_bad_inode(inode);417417 befs_debug(sb, "<--- befs_read_inode() - Bad inode");418418 return;···761761 printk(KERN_ERR762762 "BeFS(%s): Unable to allocate memory for private "763763 "portion of superblock. Bailing.\n", sb->s_id);764764- goto unaquire_none;764764+ goto unacquire_none;765765 }766766 befs_sb = BEFS_SB(sb);767767 memset(befs_sb, 0, sizeof(befs_sb_info));768768769769 if (!parse_options((char *) data, &befs_sb->mount_opts)) {770770 befs_error(sb, "cannot parse mount options");771771- goto unaquire_priv_sbp;771771+ goto unacquire_priv_sbp;772772 }773773774774 befs_debug(sb, "---> befs_fill_super()");···794794795795 if (!(bh = sb_bread(sb, sb_block))) {796796 befs_error(sb, "unable to read superblock");797797- goto unaquire_priv_sbp;797797+ goto unacquire_priv_sbp;798798 }799799800800 /* account for offset of super block on x86 */···809809 }810810811811 if (befs_load_sb(sb, disk_sb) != BEFS_OK)812812- goto unaquire_bh;812812+ goto unacquire_bh;813813814814 befs_dump_super_block(sb, disk_sb);815815816816 brelse(bh);817817818818 if (befs_check_sb(sb) != BEFS_OK)819819- goto unaquire_priv_sbp;819819+ goto unacquire_priv_sbp;820820821821 if( befs_sb->num_blocks > ~((sector_t)0) ) {822822 befs_error(sb, "blocks count: %Lu "823823 "is larger than the host can use",824824 befs_sb->num_blocks);825825- goto unaquire_priv_sbp;825825+ goto unacquire_priv_sbp;826826 }827827828828 /*···838838 if (!sb->s_root) {839839 iput(root);840840 befs_error(sb, "get root inode failed");841841- goto unaquire_priv_sbp;841841+ goto unacquire_priv_sbp;842842 }843843844844 /* load nls library */···860860861861 return 0;862862/*****************/863863- unaquire_bh:863863+ unacquire_bh:864864 brelse(bh);865865866866- unaquire_priv_sbp:866866+ unacquire_priv_sbp:867867 kfree(sb->s_fs_info);868868869869- unaquire_none:869869+ unacquire_none:870870 sb->s_fs_info = NULL;871871 return -EINVAL;872872}···925925926926 err = befs_init_inodecache();927927 if (err)928928- goto unaquire_none;928928+ goto unacquire_none;929929930930 err = register_filesystem(&befs_fs_type);931931 if (err)932932- goto unaquire_inodecache;932932+ goto unacquire_inodecache;933933934934 return 0;935935936936-unaquire_inodecache:936936+unacquire_inodecache:937937 befs_destroy_inodecache();938938939939-unaquire_none:939939+unacquire_none:940940 return err;941941}942942
+1-1
fs/cifs/file.c
···324324 return rc;325325}326326327327-/* Try to reaquire byte range locks that were released when session */327327+/* Try to reacquire byte range locks that were released when session */328328/* to server was lost */329329static int cifs_relock_file(struct cifsFileInfo *cifsFile)330330{
+1-1
fs/jfs/jfs_txnmgr.c
···842842 TXN_UNLOCK();843843 release_metapage(mp);844844 TXN_LOCK();845845- xtid = tlck->tid; /* reaquire after dropping TXN_LOCK */845845+ xtid = tlck->tid; /* reacquire after dropping TXN_LOCK */846846847847 jfs_info("txLock: in waitLock, tid = %d, xtid = %d, lid = %d",848848 tid, xtid, lid);
+3-3
sound/oss/dmabuf.c
···547547 }548548 return 0;549549}550550-/* aquires lock */550550+/* acquires lock */551551int DMAbuf_getrdbuffer(int dev, char **buf, int *len, int dontblock)552552{553553 struct audio_operations *adev = audio_devs[dev];···821821 *size = len & ~SAMPLE_ROUNDUP;822822 return (*size > 0);823823}824824-/* aquires lock */824824+/* acquires lock */825825int DMAbuf_getwrbuffer(int dev, char **buf, int *size, int dontblock)826826{827827 struct audio_operations *adev = audio_devs[dev];···855855 spin_unlock_irqrestore(&dmap->lock,flags);856856 return 0;857857}858858-/* has to aquire dmap->lock */858858+/* has to acquire dmap->lock */859859int DMAbuf_move_wrpointer(int dev, int l)860860{861861 struct audio_operations *adev = audio_devs[dev];