1
0
Fork 0

staging: dgnc: driver.c: removes trailing whitespace

This patch removes trailing whitespace in
the dgnc_driver.c file.

Signed-off-by: Lidza Louina <lidza.louina@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
hifive-unleashed-5.1
Lidza Louina 2013-08-21 11:08:02 -04:00 committed by Greg Kroah-Hartman
parent 1ef56a42e9
commit 817b784716
1 changed files with 13 additions and 13 deletions

View File

@ -6,12 +6,12 @@
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option) * the Free Software Foundation; either version 2, or (at your option)
* any later version. * any later version.
* *
* This program is distributed in the hope that it will be useful, * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY, EXPRESS OR IMPLIED; without even the * but WITHOUT ANY WARRANTY, EXPRESS OR IMPLIED; without even the
* implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
* PURPOSE. See the GNU General Public License for more details. * PURPOSE. See the GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software * along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
@ -345,7 +345,7 @@ static int dgnc_init_pci(void)
/* returns count (>= 0), or negative on error */ /* returns count (>= 0), or negative on error */
static int dgnc_init_one(struct pci_dev *pdev, const struct pci_device_id *ent) static int dgnc_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
{ {
int rc; int rc;
/* wake up and enable device */ /* wake up and enable device */
@ -516,7 +516,7 @@ static int dgnc_found_board(struct pci_dev *pdev, int id)
APR(("memory allocation for board msgbuf failed\n")); APR(("memory allocation for board msgbuf failed\n"));
return(-ENOMEM); return(-ENOMEM);
} }
/* store the info for the board we've found */ /* store the info for the board we've found */
brd->magic = DGNC_BOARD_MAGIC; brd->magic = DGNC_BOARD_MAGIC;
brd->boardnum = dgnc_NumBoards; brd->boardnum = dgnc_NumBoards;
@ -566,7 +566,7 @@ static int dgnc_found_board(struct pci_dev *pdev, int id)
* PCI Local Address (i.e. "resource" number) space * PCI Local Address (i.e. "resource" number) space
* 0 PLX Memory Mapped Config * 0 PLX Memory Mapped Config
* 1 PLX I/O Mapped Config * 1 PLX I/O Mapped Config
* 2 I/O Mapped UARTs and Status * 2 I/O Mapped UARTs and Status
* 3 Memory Mapped VPD * 3 Memory Mapped VPD
* 4 Memory Mapped UARTs and Status * 4 Memory Mapped UARTs and Status
*/ */
@ -628,7 +628,7 @@ static int dgnc_found_board(struct pci_dev *pdev, int id)
/* /*
* This chip is set up 100% when we get to it. * This chip is set up 100% when we get to it.
* No need to enable global interrupts or anything. * No need to enable global interrupts or anything.
*/ */
if (brd->bd_flags & BD_IS_PCI_EXPRESS) if (brd->bd_flags & BD_IS_PCI_EXPRESS)
brd->dpatype = T_NEO_EXPRESS | T_PCIBUS; brd->dpatype = T_NEO_EXPRESS | T_PCIBUS;
@ -784,23 +784,23 @@ static void dgnc_do_remap(struct board_t *brd)
/***************************************************************************** /*****************************************************************************
* *
* Function: * Function:
* *
* dgnc_poll_handler * dgnc_poll_handler
* *
* Author: * Author:
* *
* Scott H Kilau * Scott H Kilau
* *
* Parameters: * Parameters:
* *
* dummy -- ignored * dummy -- ignored
* *
* Return Values: * Return Values:
* *
* none * none
* *
* Description: * Description:
* *
* As each timer expires, it determines (a) whether the "transmit" * As each timer expires, it determines (a) whether the "transmit"
* waiter needs to be woken up, and (b) whether the poller needs to * waiter needs to be woken up, and (b) whether the poller needs to
* be rescheduled. * be rescheduled.