Skip to content

Commit

Permalink
USB: usb/serial/ch341.c: make 4 functions static
Browse files Browse the repository at this point in the history
This patch makes four needlessly global functions static.

Signed-off-by: Adrian Bunk <bunk@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Adrian Bunk authored and Greg Kroah-Hartman committed Oct 12, 2007
1 parent 6ce7610 commit 93b6497
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions drivers/usb/serial/ch341.c
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,8 @@ static int ch341_control_in(struct usb_device *dev,
return r;
}

int ch341_set_baudrate(struct usb_device *dev, struct ch341_private *priv)
static int ch341_set_baudrate(struct usb_device *dev,
struct ch341_private *priv)
{
short a, b;
int r;
Expand Down Expand Up @@ -108,14 +109,15 @@ int ch341_set_baudrate(struct usb_device *dev, struct ch341_private *priv)
return r;
}

int ch341_set_handshake(struct usb_device *dev, struct ch341_private *priv)
static int ch341_set_handshake(struct usb_device *dev,
struct ch341_private *priv)
{
dbg("ch341_set_handshake(%d,%d)", priv->dtr, priv->rts);
return ch341_control_out(dev, 0xa4,
~((priv->dtr?1<<5:0)|(priv->rts?1<<6:0)), 0);
}

int ch341_get_status(struct usb_device *dev)
static int ch341_get_status(struct usb_device *dev)
{
char *buffer;
int r;
Expand All @@ -142,7 +144,7 @@ out: kfree(buffer);

/* -------------------------------------------------------------------------- */

int ch341_configure(struct usb_device *dev, struct ch341_private *priv)
static int ch341_configure(struct usb_device *dev, struct ch341_private *priv)
{
char *buffer;
int r;
Expand Down

0 comments on commit 93b6497

Please sign in to comment.