提交 8a8cea27 编写于 作者: S Stefan Richter

firewire: missing newline in printk

Also remove some errno printouts which will be shown by infrastructure
code anyway.
Signed-off-by: NStefan Richter <stefanr@s5r6.in-berlin.de>
上级 b8f10657
...@@ -1934,12 +1934,12 @@ static int pci_suspend(struct pci_dev *pdev, pm_message_t state) ...@@ -1934,12 +1934,12 @@ static int pci_suspend(struct pci_dev *pdev, pm_message_t state)
free_irq(pdev->irq, ohci); free_irq(pdev->irq, ohci);
err = pci_save_state(pdev); err = pci_save_state(pdev);
if (err) { if (err) {
fw_error("pci_save_state failed with %d", err); fw_error("pci_save_state failed\n");
return err; return err;
} }
err = pci_set_power_state(pdev, pci_choose_state(pdev, state)); err = pci_set_power_state(pdev, pci_choose_state(pdev, state));
if (err) { if (err) {
fw_error("pci_set_power_state failed with %d", err); fw_error("pci_set_power_state failed\n");
return err; return err;
} }
...@@ -1955,7 +1955,7 @@ static int pci_resume(struct pci_dev *pdev) ...@@ -1955,7 +1955,7 @@ static int pci_resume(struct pci_dev *pdev)
pci_restore_state(pdev); pci_restore_state(pdev);
err = pci_enable_device(pdev); err = pci_enable_device(pdev);
if (err) { if (err) {
fw_error("pci_enable_device failed with %d", err); fw_error("pci_enable_device failed\n");
return err; return err;
} }
......
...@@ -985,7 +985,7 @@ static int sbp2_scsi_queuecommand(struct scsi_cmnd *cmd, scsi_done_fn_t done) ...@@ -985,7 +985,7 @@ static int sbp2_scsi_queuecommand(struct scsi_cmnd *cmd, scsi_done_fn_t done)
* transfer direction not handled. * transfer direction not handled.
*/ */
if (cmd->sc_data_direction == DMA_BIDIRECTIONAL) { if (cmd->sc_data_direction == DMA_BIDIRECTIONAL) {
fw_error("Cannot handle DMA_BIDIRECTIONAL - rejecting command"); fw_error("Can't handle DMA_BIDIRECTIONAL, rejecting command\n");
cmd->result = DID_ERROR << 16; cmd->result = DID_ERROR << 16;
done(cmd); done(cmd);
return 0; return 0;
......
...@@ -214,7 +214,7 @@ static struct fw_node *build_tree(struct fw_card *card, ...@@ -214,7 +214,7 @@ static struct fw_node *build_tree(struct fw_card *card,
node = fw_node_create(q, port_count, card->color); node = fw_node_create(q, port_count, card->color);
if (node == NULL) { if (node == NULL) {
fw_error("Out of memory while building topology."); fw_error("Out of memory while building topology.\n");
return NULL; return NULL;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册