staging: dgap: fixed "foo* bar should be foo * bar" in dgap.c
authorDaeseok Youn <daeseok.youn@gmail.com>
Wed, 2 Jul 2014 07:06:04 +0000 (16:06 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 9 Jul 2014 19:00:30 +0000 (12:00 -0700)
clean up checkpatch.pl error:
ERROR: "foo* bar" should be "foo *bar"

Signed-off-by: Daeseok Youn <daeseok.youn@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/dgap/dgap.c

index d4f80afe947d00ba43d5d91531507b86025595fc..0036f353794ea2435a51f94bd0c022093088cbb1 100644 (file)
@@ -202,7 +202,7 @@ static int dgap_test_bios(struct board_t *brd);
 static int dgap_test_fep(struct board_t *brd);
 static int dgap_tty_register_ports(struct board_t *brd);
 static int dgap_firmware_load(struct pci_dev *pdev, int card_type,
-                             struct board_tbrd);
+                             struct board_t *brd);
 
 static void dgap_cleanup_module(void);
 
@@ -574,7 +574,7 @@ static int dgap_init_pci(void)
 static int dgap_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
 {
        int rc;
-       struct board_tbrd;
+       struct board_t *brd;
 
        if (dgap_numboards >= MAXBOARDS)
                return -EPERM;
@@ -872,7 +872,7 @@ static void dgap_free_irq(struct board_t *brd)
 }
 
 static int dgap_firmware_load(struct pci_dev *pdev, int card_type,
-                             struct board_tbrd)
+                             struct board_t *brd)
 {
        const struct firmware *fw;
        char *tmp_ptr;
This page took 0.068356 seconds and 5 git commands to generate.