Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8a8cea27 authored by Stefan Richter's avatar Stefan Richter
Browse files

firewire: missing newline in printk



Also remove some errno printouts which will be shown by infrastructure
code anyway.

Signed-off-by: default avatarStefan Richter <stefanr@s5r6.in-berlin.de>
parent b8f10657
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -1934,12 +1934,12 @@ static int pci_suspend(struct pci_dev *pdev, pm_message_t state)
	free_irq(pdev->irq, ohci);
	err = pci_save_state(pdev);
	if (err) {
		fw_error("pci_save_state failed with %d", err);
		fw_error("pci_save_state failed\n");
		return err;
	}
	err = pci_set_power_state(pdev, pci_choose_state(pdev, state));
	if (err) {
		fw_error("pci_set_power_state failed with %d", err);
		fw_error("pci_set_power_state failed\n");
		return err;
	}

@@ -1955,7 +1955,7 @@ static int pci_resume(struct pci_dev *pdev)
	pci_restore_state(pdev);
	err = pci_enable_device(pdev);
	if (err) {
		fw_error("pci_enable_device failed with %d", err);
		fw_error("pci_enable_device failed\n");
		return err;
	}

+1 −1
Original line number Diff line number Diff line
@@ -985,7 +985,7 @@ static int sbp2_scsi_queuecommand(struct scsi_cmnd *cmd, scsi_done_fn_t done)
	 * transfer direction not handled.
	 */
	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;
		done(cmd);
		return 0;
+1 −1
Original line number Diff line number Diff line
@@ -214,7 +214,7 @@ static struct fw_node *build_tree(struct fw_card *card,

		node = fw_node_create(q, port_count, card->color);
		if (node == NULL) {
			fw_error("Out of memory while building topology.");
			fw_error("Out of memory while building topology.\n");
			return NULL;
		}