staging: rts5139: make some functions static in xd.c
authorOleksij Rempel <bug-track@fisher-privat.net>
Thu, 10 May 2012 07:59:27 +0000 (09:59 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 10 May 2012 16:57:18 +0000 (09:57 -0700)
Signed-off-by: Oleksij Rempel <bug-track@fisher-privat.net>
Acked-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rts5139/xd.c
drivers/staging/rts5139/xd.h

index 7f2748c7668849051440fd89f283a488e8ebad4f..09f1b4c9b9a8d5a8e3bcb17a651d4ec62c6f3e9d 100644 (file)
@@ -862,6 +862,8 @@ static void xd_set_l2p_tbl(struct rts51x_chip *chip, int zone_no, u16 log_off,
        zone->l2p_table[log_off] = phy_off;
 }
 
+static int xd_delay_write(struct rts51x_chip *chip);
+
 static u32 xd_get_l2p_tbl(struct rts51x_chip *chip, int zone_no, u16 log_off)
 {
        struct xd_info *xd_card = &(chip->xd_card);
@@ -1822,7 +1824,7 @@ Fail:
        TRACE_RET(chip, STATUS_FAIL);
 }
 
-int xd_delay_write(struct rts51x_chip *chip)
+static int xd_delay_write(struct rts51x_chip *chip)
 {
        struct xd_info *xd_card = &(chip->xd_card);
        struct xd_delay_write_tag *delay_write = &(xd_card->delay_write);
@@ -2091,7 +2093,7 @@ void xd_cleanup_work(struct rts51x_chip *chip)
        }
 }
 
-int xd_power_off_card3v3(struct rts51x_chip *chip)
+static int xd_power_off_card3v3(struct rts51x_chip *chip)
 {
        int retval;
 
index fa695903ba65ad59ae660126ad67a9a6a1170cda..55e4205e23faaae3a5749490537c8b6e20f8a3ad 100644 (file)
 #define        CIS1_9                  (256 + 9)
 
 int reset_xd_card(struct rts51x_chip *chip);
-int xd_delay_write(struct rts51x_chip *chip);
 int xd_rw(struct scsi_cmnd *srb, struct rts51x_chip *chip, u32 start_sector,
          u16 sector_cnt);
 void xd_free_l2p_tbl(struct rts51x_chip *chip);
 void xd_cleanup_work(struct rts51x_chip *chip);
-int xd_power_off_card3v3(struct rts51x_chip *chip);
 int release_xd_card(struct rts51x_chip *chip);
 
 #endif /* __RTS51X_XD_H */