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

Commit 40215ddf authored by Sudip Mukherjee's avatar Sudip Mukherjee Committed by Greg Kroah-Hartman
Browse files

staging: dgnc: remove blankline before brace



Blank lines are not needed before closing braces. checkpatch was giving
warning about this.

Signed-off-by: default avatarSudip Mukherjee <sudip@vectorindia.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 9753007e
Loading
Loading
Loading
Loading
+0 −7
Original line number Diff line number Diff line
@@ -115,7 +115,6 @@ static inline void cls_set_cts_flow_control(struct channel_t *ch)
		&ch->ch_cls_uart->isr_fcr);

	ch->ch_t_tlevel = 16;

}

static inline void cls_set_ixon_flow_control(struct channel_t *ch)
@@ -161,7 +160,6 @@ static inline void cls_set_ixon_flow_control(struct channel_t *ch)
	writeb((UART_FCR_ENABLE_FIFO | UART_16654_FCR_RXTRIGGER_16 |
		UART_16654_FCR_TXTRIGGER_16 | UART_FCR_CLEAR_RCVR),
		&ch->ch_cls_uart->isr_fcr);

}

static inline void cls_set_no_output_flow_control(struct channel_t *ch)
@@ -205,7 +203,6 @@ static inline void cls_set_no_output_flow_control(struct channel_t *ch)
	ch->ch_r_watermark = 0;
	ch->ch_t_tlevel = 16;
	ch->ch_r_tlevel = 16;

}

static inline void cls_set_rts_flow_control(struct channel_t *ch)
@@ -244,7 +241,6 @@ static inline void cls_set_rts_flow_control(struct channel_t *ch)

	ch->ch_r_watermark = 4;
	ch->ch_r_tlevel = 8;

}

static inline void cls_set_ixoff_flow_control(struct channel_t *ch)
@@ -286,7 +282,6 @@ static inline void cls_set_ixoff_flow_control(struct channel_t *ch)
	writeb((UART_FCR_ENABLE_FIFO | UART_16654_FCR_RXTRIGGER_16 |
		UART_16654_FCR_TXTRIGGER_16 | UART_FCR_CLEAR_RCVR),
		&ch->ch_cls_uart->isr_fcr);

}

static inline void cls_set_no_input_flow_control(struct channel_t *ch)
@@ -325,7 +320,6 @@ static inline void cls_set_no_input_flow_control(struct channel_t *ch)

	ch->ch_t_tlevel = 16;
	ch->ch_r_tlevel = 16;

}

/*
@@ -746,7 +740,6 @@ static void cls_tasklet(unsigned long data)
	}

	spin_unlock_irqrestore(&bd->bd_intr_lock, flags);

}

/*
+0 −2
Original line number Diff line number Diff line
@@ -529,7 +529,6 @@ static int dgnc_found_board(struct pci_dev *pdev, int id)
		dev_err(&brd->pdev->dev,
			"Didn't find any compatible Neo/Classic PCI boards.\n");
		return -ENXIO;

	}

	/*
@@ -581,7 +580,6 @@ static int dgnc_found_board(struct pci_dev *pdev, int id)
	brd->dpastatus = BD_NOFEP;

	return -ENXIO;

}

static int dgnc_finalize_board_init(struct dgnc_board *brd)
+0 −1
Original line number Diff line number Diff line
@@ -251,7 +251,6 @@ long dgnc_mgmt_ioctl(struct file *file, unsigned int cmd, unsigned long arg)

		break;
	}

	}

	return 0;
+0 −1
Original line number Diff line number Diff line
@@ -901,7 +901,6 @@ static void neo_tasklet(unsigned long data)

	/* Allow interrupt routine to access the interrupt register again */
	spin_unlock_irqrestore(&bd->bd_intr_lock, flags);

}

/*
+0 −1
Original line number Diff line number Diff line
@@ -695,7 +695,6 @@ void dgnc_create_tty_sysfs(struct un_t *un, struct device *c)
	}

	dev_set_drvdata(c, un);

}

void dgnc_remove_tty_sysfs(struct device *c)
Loading