mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-09-04 20:19:47 +08:00
fix comment/printk typos concerning "already"
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
This commit is contained in:
parent
b27d63d8f8
commit
698f93159a
@ -1087,7 +1087,7 @@ static enum finish_epoch drbd_may_finish_epoch(struct drbd_conf *mdev,
|
|||||||
} else {
|
} else {
|
||||||
epoch->flags = 0;
|
epoch->flags = 0;
|
||||||
atomic_set(&epoch->epoch_size, 0);
|
atomic_set(&epoch->epoch_size, 0);
|
||||||
/* atomic_set(&epoch->active, 0); is alrady zero */
|
/* atomic_set(&epoch->active, 0); is already zero */
|
||||||
if (rv == FE_STILL_LIVE)
|
if (rv == FE_STILL_LIVE)
|
||||||
rv = FE_RECYCLED;
|
rv = FE_RECYCLED;
|
||||||
}
|
}
|
||||||
|
@ -1116,7 +1116,7 @@ fritz_remove_pci(struct pci_dev *pdev)
|
|||||||
release_card(card);
|
release_card(card);
|
||||||
else
|
else
|
||||||
if (debug)
|
if (debug)
|
||||||
pr_info("%s: drvdata allready removed\n", __func__);
|
pr_info("%s: drvdata already removed\n", __func__);
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct pci_device_id fcpci_ids[] __devinitdata = {
|
static struct pci_device_id fcpci_ids[] __devinitdata = {
|
||||||
|
@ -4268,7 +4268,7 @@ init_card(struct hfc_multi *hc)
|
|||||||
goto error;
|
goto error;
|
||||||
/*
|
/*
|
||||||
* Finally enable IRQ output
|
* Finally enable IRQ output
|
||||||
* this is only allowed, if an IRQ routine is allready
|
* this is only allowed, if an IRQ routine is already
|
||||||
* established for this HFC, so don't do that earlier
|
* established for this HFC, so don't do that earlier
|
||||||
*/
|
*/
|
||||||
spin_lock_irqsave(&hc->lock, flags);
|
spin_lock_irqsave(&hc->lock, flags);
|
||||||
@ -5212,7 +5212,7 @@ static void __devexit hfc_remove_pci(struct pci_dev *pdev)
|
|||||||
spin_unlock_irqrestore(&HFClock, flags);
|
spin_unlock_irqrestore(&HFClock, flags);
|
||||||
} else {
|
} else {
|
||||||
if (debug)
|
if (debug)
|
||||||
printk(KERN_DEBUG "%s: drvdata allready removed\n",
|
printk(KERN_DEBUG "%s: drvdata already removed\n",
|
||||||
__func__);
|
__func__);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1773,7 +1773,7 @@ init_card(struct hfc_pci *hc)
|
|||||||
inithfcpci(hc);
|
inithfcpci(hc);
|
||||||
/*
|
/*
|
||||||
* Finally enable IRQ output
|
* Finally enable IRQ output
|
||||||
* this is only allowed, if an IRQ routine is allready
|
* this is only allowed, if an IRQ routine is already
|
||||||
* established for this HFC, so don't do that earlier
|
* established for this HFC, so don't do that earlier
|
||||||
*/
|
*/
|
||||||
enable_hwirq(hc);
|
enable_hwirq(hc);
|
||||||
|
@ -1150,7 +1150,7 @@ inf_remove(struct pci_dev *pdev)
|
|||||||
if (card)
|
if (card)
|
||||||
release_card(card);
|
release_card(card);
|
||||||
else
|
else
|
||||||
pr_debug("%s: drvdata allready removed\n", __func__);
|
pr_debug("%s: drvdata already removed\n", __func__);
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct pci_driver infineon_driver = {
|
static struct pci_driver infineon_driver = {
|
||||||
|
@ -484,7 +484,7 @@ sfax_remove_pci(struct pci_dev *pdev)
|
|||||||
if (card)
|
if (card)
|
||||||
release_card(card);
|
release_card(card);
|
||||||
else
|
else
|
||||||
pr_debug("%s: drvdata allready removed\n", __func__);
|
pr_debug("%s: drvdata already removed\n", __func__);
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct pci_device_id sfaxpci_ids[] __devinitdata = {
|
static struct pci_device_id sfaxpci_ids[] __devinitdata = {
|
||||||
|
@ -1402,7 +1402,7 @@ w6692_remove_pci(struct pci_dev *pdev)
|
|||||||
release_card(card);
|
release_card(card);
|
||||||
else
|
else
|
||||||
if (debug)
|
if (debug)
|
||||||
pr_notice("%s: drvdata allready removed\n", __func__);
|
pr_notice("%s: drvdata already removed\n", __func__);
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct pci_device_id w6692_ids[] = {
|
static struct pci_device_id w6692_ids[] = {
|
||||||
|
@ -1172,7 +1172,7 @@ CallcFreeChan(struct IsdnCardState *csta)
|
|||||||
kfree(csta->channel[i].b_st);
|
kfree(csta->channel[i].b_st);
|
||||||
csta->channel[i].b_st = NULL;
|
csta->channel[i].b_st = NULL;
|
||||||
} else
|
} 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)) {
|
if (i || test_bit(FLG_TWO_DCHAN, &csta->HW_Flags)) {
|
||||||
release_d_st(csta->channel + i);
|
release_d_st(csta->channel + i);
|
||||||
} else
|
} else
|
||||||
|
@ -130,7 +130,7 @@ tei_id_request(struct FsmInst *fi, int event, void *arg)
|
|||||||
|
|
||||||
if (st->l2.tei != -1) {
|
if (st->l2.tei != -1) {
|
||||||
st->ma.tei_m.printdebug(&st->ma.tei_m,
|
st->ma.tei_m.printdebug(&st->ma.tei_m,
|
||||||
"assign request for allready asigned tei %d",
|
"assign request for already asigned tei %d",
|
||||||
st->l2.tei);
|
st->l2.tei);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -457,7 +457,7 @@ tei_id_request(struct FsmInst *fi, int event, void *arg)
|
|||||||
|
|
||||||
if (tm->l2->tei != GROUP_TEI) {
|
if (tm->l2->tei != GROUP_TEI) {
|
||||||
tm->tei_m.printdebug(&tm->tei_m,
|
tm->tei_m.printdebug(&tm->tei_m,
|
||||||
"assign request for allready assigned tei %d",
|
"assign request for already assigned tei %d",
|
||||||
tm->l2->tei);
|
tm->l2->tei);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -484,7 +484,7 @@ zr36057_overlay (struct zoran *zr,
|
|||||||
zr->overlay_settings.format);
|
zr->overlay_settings.format);
|
||||||
|
|
||||||
/* Start and length of each line MUST be 4-byte aligned.
|
/* 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! */
|
* All error messages are internal driver checking only! */
|
||||||
|
|
||||||
/* video display top and bottom registers */
|
/* video display top and bottom registers */
|
||||||
|
@ -488,7 +488,7 @@ bfa_ioim_sm_cleanup_qfull(struct bfa_ioim_s *ioim, enum bfa_ioim_event event)
|
|||||||
|
|
||||||
case BFA_IOIM_SM_ABORT:
|
case BFA_IOIM_SM_ABORT:
|
||||||
/**
|
/**
|
||||||
* IO is alraedy being cleaned up implicitly
|
* IO is already being cleaned up implicitly
|
||||||
*/
|
*/
|
||||||
ioim->io_cbfn = __bfa_cb_ioim_abort;
|
ioim->io_cbfn = __bfa_cb_ioim_abort;
|
||||||
break;
|
break;
|
||||||
|
@ -125,7 +125,7 @@ void fhci_transaction_confirm(struct fhci_usb *usb, struct packet *pkt)
|
|||||||
/*
|
/*
|
||||||
* Flush all transmitted packets from BDs
|
* Flush all transmitted packets from BDs
|
||||||
* This routine is called when disabling the USB port to flush all
|
* This routine is called when disabling the USB port to flush all
|
||||||
* transmissions that are allready scheduled in the BDs
|
* transmissions that are already scheduled in the BDs
|
||||||
*/
|
*/
|
||||||
void fhci_flush_all_transmissions(struct fhci_usb *usb)
|
void fhci_flush_all_transmissions(struct fhci_usb *usb)
|
||||||
{
|
{
|
||||||
|
@ -188,7 +188,7 @@ static void tick_handle_periodic_broadcast(struct clock_event_device *dev)
|
|||||||
/*
|
/*
|
||||||
* Setup the next period for devices, which do not have
|
* Setup the next period for devices, which do not have
|
||||||
* periodic mode. We read dev->next_event first and add to it
|
* periodic mode. We read dev->next_event first and add to it
|
||||||
* when the event alrady expired. clockevents_program_event()
|
* when the event already expired. clockevents_program_event()
|
||||||
* sets dev->next_event only when the event is really
|
* sets dev->next_event only when the event is really
|
||||||
* programmed to the device.
|
* programmed to the device.
|
||||||
*/
|
*/
|
||||||
|
@ -201,7 +201,7 @@ static int nf_ct_frag6_queue(struct nf_ct_frag6_queue *fq, struct sk_buff *skb,
|
|||||||
int offset, end;
|
int offset, end;
|
||||||
|
|
||||||
if (fq->q.last_in & INET_FRAG_COMPLETE) {
|
if (fq->q.last_in & INET_FRAG_COMPLETE) {
|
||||||
pr_debug("Allready completed\n");
|
pr_debug("Already completed\n");
|
||||||
goto err;
|
goto err;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user