diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2015-04-14 12:50:27 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2015-04-14 12:50:27 -0400 |
commit | d0bbe0dd353af9521e9d8bc5236308c677b6f62a (patch) | |
tree | a1142f3a5058d16504863ac777b21efdf1eca49e /drivers/isdn | |
parent | 8de29a35dc840a05e451ad035bcb06e21ccf605f (diff) | |
parent | 0e4f93e5017d9d8080bbd34db17836e090eb46fe (diff) |
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial
Pull trivial tree from Jiri Kosina:
"Usual trivial tree updates. Nothing outstanding -- mostly printk()
and comment fixes and unused identifier removals"
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial:
goldfish: goldfish_tty_probe() is not using 'i' any more
powerpc: Fix comment in smu.h
qla2xxx: Fix printks in ql_log message
lib: correct link to the original source for div64_u64
si2168, tda10071, m88ds3103: Fix firmware wording
usb: storage: Fix printk in isd200_log_config()
qla2xxx: Fix printk in qla25xx_setup_mode
init/main: fix reset_device comment
ipwireless: missing assignment
goldfish: remove unreachable line of code
coredump: Fix do_coredump() comment
stacktrace.h: remove duplicate declaration task_struct
smpboot.h: Remove unused function prototype
treewide: Fix typo in printk messages
treewide: Fix typo in printk messages
mod_devicetable: fix comment for match_flags
Diffstat (limited to 'drivers/isdn')
-rw-r--r-- | drivers/isdn/hardware/mISDN/mISDNinfineon.c | 2 | ||||
-rw-r--r-- | drivers/isdn/mISDN/dsp_cmx.c | 2 | ||||
-rw-r--r-- | drivers/isdn/mISDN/dsp_core.c | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/drivers/isdn/hardware/mISDN/mISDNinfineon.c b/drivers/isdn/hardware/mISDN/mISDNinfineon.c index c1493f4162fb..d5bdbaf93a1a 100644 --- a/drivers/isdn/hardware/mISDN/mISDNinfineon.c +++ b/drivers/isdn/hardware/mISDN/mISDNinfineon.c | |||
@@ -1092,7 +1092,7 @@ inf_probe(struct pci_dev *pdev, const struct pci_device_id *ent) | |||
1092 | } | 1092 | } |
1093 | card->ci = get_card_info(ent->driver_data); | 1093 | card->ci = get_card_info(ent->driver_data); |
1094 | if (!card->ci) { | 1094 | if (!card->ci) { |
1095 | pr_info("mISDN: do not have informations about adapter at %s\n", | 1095 | pr_info("mISDN: do not have information about adapter at %s\n", |
1096 | pci_name(pdev)); | 1096 | pci_name(pdev)); |
1097 | kfree(card); | 1097 | kfree(card); |
1098 | pci_disable_device(pdev); | 1098 | pci_disable_device(pdev); |
diff --git a/drivers/isdn/mISDN/dsp_cmx.c b/drivers/isdn/mISDN/dsp_cmx.c index 87f7dff20ff6..52c43821f746 100644 --- a/drivers/isdn/mISDN/dsp_cmx.c +++ b/drivers/isdn/mISDN/dsp_cmx.c | |||
@@ -295,7 +295,7 @@ dsp_cmx_del_conf_member(struct dsp *dsp) | |||
295 | } | 295 | } |
296 | } | 296 | } |
297 | printk(KERN_WARNING | 297 | printk(KERN_WARNING |
298 | "%s: dsp is not present in its own conf_meber list.\n", | 298 | "%s: dsp is not present in its own conf_member list.\n", |
299 | __func__); | 299 | __func__); |
300 | 300 | ||
301 | return -EINVAL; | 301 | return -EINVAL; |
diff --git a/drivers/isdn/mISDN/dsp_core.c b/drivers/isdn/mISDN/dsp_core.c index 77025f5cb57d..0222b1a35a2d 100644 --- a/drivers/isdn/mISDN/dsp_core.c +++ b/drivers/isdn/mISDN/dsp_core.c | |||
@@ -460,7 +460,7 @@ dsp_control_req(struct dsp *dsp, struct mISDNhead *hh, struct sk_buff *skb) | |||
460 | } | 460 | } |
461 | if (dsp_debug & DEBUG_DSP_CORE) | 461 | if (dsp_debug & DEBUG_DSP_CORE) |
462 | printk(KERN_DEBUG "%s: enable mixing of " | 462 | printk(KERN_DEBUG "%s: enable mixing of " |
463 | "tx-data with conf mebers\n", __func__); | 463 | "tx-data with conf members\n", __func__); |
464 | dsp->tx_mix = 1; | 464 | dsp->tx_mix = 1; |
465 | dsp_cmx_hardware(dsp->conf, dsp); | 465 | dsp_cmx_hardware(dsp->conf, dsp); |
466 | dsp_rx_off(dsp); | 466 | dsp_rx_off(dsp); |
@@ -474,7 +474,7 @@ dsp_control_req(struct dsp *dsp, struct mISDNhead *hh, struct sk_buff *skb) | |||
474 | } | 474 | } |
475 | if (dsp_debug & DEBUG_DSP_CORE) | 475 | if (dsp_debug & DEBUG_DSP_CORE) |
476 | printk(KERN_DEBUG "%s: disable mixing of " | 476 | printk(KERN_DEBUG "%s: disable mixing of " |
477 | "tx-data with conf mebers\n", __func__); | 477 | "tx-data with conf members\n", __func__); |
478 | dsp->tx_mix = 0; | 478 | dsp->tx_mix = 0; |
479 | dsp_cmx_hardware(dsp->conf, dsp); | 479 | dsp_cmx_hardware(dsp->conf, dsp); |
480 | dsp_rx_off(dsp); | 480 | dsp_rx_off(dsp); |