* UART
*/
static struct serial_uart_config uart_config[] = {
- { "unknown", 1, 0 }, /* Must go first -- used as unasigned */
+ { "unknown", 1, 0 }, /* Must go first -- used as unassigned */
{ "VAC UART", 1, 0 }
};
#define VAC_UART_TYPE 1 /* Just index in above array */
kfree(csta->channel[i].b_st);
csta->channel[i].b_st = NULL;
} else
- printk(KERN_WARNING "CallcFreeChan b_st ch%d allready freed\n", i);
+ printk(KERN_WARNING "CallcFreeChan b_st ch%d already freed\n", i);
if (i || test_bit(FLG_TWO_DCHAN, &csta->HW_Flags)) {
release_d_st(csta->channel + i);
} else
if (st->l2.tei != -1) {
st->ma.tei_m.printdebug(&st->ma.tei_m,
- "assign request for allready asigned tei %d",
+ "assign request for already assigned tei %d",
st->l2.tei);
return;
}
register int max_delay = 20000;
register int i;
- /* fifo write without cli because it's allready done */
+ /* fifo write without cli because it's already done */
byteout(ale, off);
for (i = 0; i<size; i++) {
ret = HFC_BUSY & bytein(ale);
return;
}
if(chk == 1) {
- printk(KERN_INFO "HYSDN: apl %d allready registered\n", appl);
+ printk(KERN_INFO "HYSDN: apl %d already registered\n", appl);
return;
}
MaxBDataBlocks = rp->datablkcnt > CAPI_MAXDATAWINDOW ? CAPI_MAXDATAWINDOW : rp->datablkcnt;
/*
* Allocate the V4L grab buffers
*
- * These have to be pysically contiguous.
+ * These have to be physically contiguous.
* If v4l_bufsize <= MAX_KMALLOC_MEM we use kmalloc
* else we try to allocate them with bigphysarea_alloc_pages
* if the bigphysarea patch is present in the kernel,
- * else we try to use high memory (if the user has bootet
+ * else we try to use high memory (if the user has booted
* Linux with the necessary memory left over).
*/
for (i = 0; i < v4l_nbufs; i++) {
if (zr->v4l_gbuf[i].fbuffer)
printk(KERN_WARNING
- "%s: v4l_fbuffer_alloc: buffer %d allready allocated ???\n",
+ "%s: v4l_fbuffer_alloc: buffer %d already allocated ???\n",
zr->name, i);
//udelay(20);
for (i = 0; i < zr->jpg_nbufs; i++) {
if (zr->jpg_gbuf[i].frag_tab)
printk(KERN_WARNING
- "%s: jpg_fbuffer_alloc: buffer %d allready allocated ???\n",
+ "%s: jpg_fbuffer_alloc: buffer %d already allocated ???\n",
zr->name, i);
/* Allocate fragment table for this buffer */
for (off = 0; off < zr->jpg_bufsize; off += PAGE_SIZE)
SetPageReserved(virt_to_page(mem + off));
} else {
- /* jpg_bufsize is allreay page aligned */
+ /* jpg_bufsize is already page aligned */
for (j = 0; j < zr->jpg_bufsize / PAGE_SIZE; j++)
{
mem = get_zeroed_page(GFP_KERNEL);
fmt);
/* Start and length of each line MUST be 4-byte aligned.
- This should be allready checked before the call to this routine.
+ This should be already checked before the call to this routine.
All error messages are internal driver checking only! */
/* video display top and bottom registers */
case 0:
if (zr->user > 1) {
DEBUG1(printk(KERN_WARNING
- "%s: zoran_open: Buz is allready in use\n",
+ "%s: zoran_open: Buz is already in use\n",
zr->name));
return -EBUSY;
}
if (zr->jpg_buffers_allocated) {
DEBUG1(printk(KERN_ERR
- "%s: BUZIOC_REQBUFS: buffers allready allocated\n",
+ "%s: BUZIOC_REQBUFS: buffers already allocated\n",
zr->name));
return -EINVAL;
}
}
/*
- * This reverses the affects of uart_configure_port, hanging up the
+ * This reverses the effects of uart_configure_port, hanging up the
* port before removal.
*/
static void
moved to optimize use of dma (useful for OCS/ECS overscan displays)
- ddfstop is ddfstrt+ddfsize-fetchsize
- If C= didn't change anything for AGA, then at following positions the
- dma bus is allready used:
+ dma bus is already used:
ddfstrt < 48 -> memory refresh
< 96 -> disk dma
< 160 -> audio dma
int
fb_blank(struct fb_info *info, int blank)
{
- /* ??? Varible sized stack allocation. */
+ /* ??? Variable sized stack allocation. */
u16 black[info->cmap.len];
struct fb_cmap cmap;
return -EFAULT;
return 0;
case FBIOGET_FSCREENINFO:
- return copy_to_user((void *) arg, &info->fix, sizeof(fix)) ? -EFAULT : 0;
+ return copy_to_user((void *) arg, &info->fix,
+ sizeof(fix)) ? -EFAULT : 0;
case FBIOPUTCMAP:
if (copy_from_user(&cmap, (void *) arg, sizeof(cmap)))
return -EFAULT;
}
- /* get framebuffer pysical and virtual base addr & len (64bit ready) */
+ /* get framebuffer physical and virtual base addr & len (64bit ready) */
fix->smem_start = fb->sti->regions_phys[1] | 0xffffffff00000000;
fix->smem_len = fb->sti->regions[1].region_desc.length * 4096;
break;
case LM_CONNECT_RESPONSE:
IRDA_DEBUG(0, "%s(), LM_CONNECT_RESPONSE, "
- "error, LSAP allready connected\n", __FUNCTION__);
+ "error, LSAP already connected\n", __FUNCTION__);
/* Keep state */
break;
case LM_DISCONNECT_REQUEST:
*
* If the user re-runs make *config, linux/autoconf.h will be
* regenerated. make notices that and will rebuild every file which
- * includes autconf.h, i.e. basically all files. This is extremely
+ * includes autoconf.h, i.e. basically all files. This is extremely
* annoying if the user just changed CONFIG_HIS_DRIVER from n to m.
*
* So we play the same trick that "mkdep" played before. We replace
* cmd_<target> = <cmdline>
*
* and then basically copies the .<target>.d file to stdout, in the
- * process filtering out the dependency on linux/autconf.h and adding
+ * process filtering out the dependency on linux/autoconf.h and adding
* dependencies on include/config/my/option.h for every
* CONFIG_MY_OPTION encountered in any of the prequisites.
*