[<prev] [next>] [day] [month] [year] [list]
Message-ID: <20080721193353.GG14846@cs181140183.pp.htv.fi>
Date: Mon, 21 Jul 2008 22:33:53 +0300
From: Adrian Bunk <bunk@...nel.org>
To: Jean-Francois Moine <moinejf@...e.fr>,
Mauro Carvalho Chehab <mchehab@...radead.org>
Cc: v4l-dvb-maintainer@...uxtv.org, linux-kernel@...r.kernel.org
Subject: [2.6 patch] media/video/gspca/: make functions static
This patch makes the following needlessly global functions static:
- gspca.c: get_isoc_ep()
- pac207.c: pac207_write_reg()
- pac207.c: pac207_read_reg()
Signed-off-by: Adrian Bunk <bunk@...nel.org>
---
drivers/media/video/gspca/gspca.c | 2 +-
drivers/media/video/gspca/pac207.c | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
e8ca82cf2b769787da857de503ee07ef2cf44a7c
diff --git a/drivers/media/video/gspca/gspca.c b/drivers/media/video/gspca/gspca.c
index 16e367c..a7d0463 100644
--- a/drivers/media/video/gspca/gspca.c
+++ b/drivers/media/video/gspca/gspca.c
@@ -399,7 +399,7 @@ static struct usb_host_endpoint *alt_isoc(struct usb_host_interface *alt,
* This routine may be called many times when the bandwidth is too small
* (the bandwidth is checked on urb submit).
*/
-struct usb_host_endpoint *get_isoc_ep(struct gspca_dev *gspca_dev)
+static struct usb_host_endpoint *get_isoc_ep(struct gspca_dev *gspca_dev)
{
struct usb_interface *intf;
struct usb_host_endpoint *ep;
diff --git a/drivers/media/video/gspca/pac207.c b/drivers/media/video/gspca/pac207.c
index fa7abc4..cb49502 100644
--- a/drivers/media/video/gspca/pac207.c
+++ b/drivers/media/video/gspca/pac207.c
@@ -208,7 +208,7 @@ static int pac207_write_regs(struct gspca_dev *gspca_dev, u16 index,
}
-int pac207_write_reg(struct gspca_dev *gspca_dev, u16 index, u16 value)
+static int pac207_write_reg(struct gspca_dev *gspca_dev, u16 index, u16 value)
{
struct usb_device *udev = gspca_dev->dev;
int err;
@@ -224,7 +224,7 @@ int pac207_write_reg(struct gspca_dev *gspca_dev, u16 index, u16 value)
}
-int pac207_read_reg(struct gspca_dev *gspca_dev, u16 index)
+static int pac207_read_reg(struct gspca_dev *gspca_dev, u16 index)
{
struct usb_device *udev = gspca_dev->dev;
int res;
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists