Skip to content

Commit

Permalink
net: sxgbe: make local functions static
Browse files Browse the repository at this point in the history
Make local functions static, because these are used only in this
file.

Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Acked-by: Byungho An <bh74.an@samsung.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Jingoo Han authored and David S. Miller committed Apr 20, 2014
1 parent 412ca15 commit 85da101
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions drivers/net/ethernet/samsung/sxgbe/sxgbe_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -425,8 +425,8 @@ static int init_tx_ring(struct device *dev, u8 queue_no,
* @rx_rsize: ring size
* Description: this function initializes the DMA RX descriptor
*/
void free_rx_ring(struct device *dev, struct sxgbe_rx_queue *rx_ring,
int rx_rsize)
static void free_rx_ring(struct device *dev, struct sxgbe_rx_queue *rx_ring,
int rx_rsize)
{
dma_free_coherent(dev, rx_rsize * sizeof(struct sxgbe_rx_norm_desc),
rx_ring->dma_rx, rx_ring->dma_rx_phy);
Expand Down Expand Up @@ -519,8 +519,8 @@ static int init_rx_ring(struct net_device *dev, u8 queue_no,
* @tx_rsize: ring size
* Description: this function initializes the DMA TX descriptor
*/
void free_tx_ring(struct device *dev, struct sxgbe_tx_queue *tx_ring,
int tx_rsize)
static void free_tx_ring(struct device *dev, struct sxgbe_tx_queue *tx_ring,
int tx_rsize)
{
dma_free_coherent(dev, tx_rsize * sizeof(struct sxgbe_tx_norm_desc),
tx_ring->dma_tx, tx_ring->dma_tx_phy);
Expand Down Expand Up @@ -1218,11 +1218,10 @@ static int sxgbe_release(struct net_device *dev)

return 0;
}

/* Prepare first Tx descriptor for doing TSO operation */
void sxgbe_tso_prepare(struct sxgbe_priv_data *priv,
struct sxgbe_tx_norm_desc *first_desc,
struct sk_buff *skb)
static void sxgbe_tso_prepare(struct sxgbe_priv_data *priv,
struct sxgbe_tx_norm_desc *first_desc,
struct sk_buff *skb)
{
unsigned int total_hdr_len, tcp_hdr_len;

Expand Down

0 comments on commit 85da101

Please sign in to comment.