diff options
author | Mauro Carvalho Chehab <mchehab@infradead.org> | 2007-05-01 08:35:10 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2007-05-01 08:35:10 -0300 |
commit | 8ea8194c2465db7679f0e0cd2aa9131294eed015 (patch) | |
tree | fdc8ed24f47fe66682626102ae9b87e1eb9107a9 /linux/drivers/media/video/cx88/cx88-mpeg.c | |
parent | 52cfe1cd4399ded1bff9efe8ff16e7d3917bf463 (diff) | |
download | mediapointer-dvb-s2-8ea8194c2465db7679f0e0cd2aa9131294eed015.tar.gz mediapointer-dvb-s2-8ea8194c2465db7679f0e0cd2aa9131294eed015.tar.bz2 |
Cx88-mpeg.c: make 2 functions static
From: Adrian Bunk <bunk@stusta.de>
This patch makes two needlessly global functions static.
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'linux/drivers/media/video/cx88/cx88-mpeg.c')
-rw-r--r-- | linux/drivers/media/video/cx88/cx88-mpeg.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/linux/drivers/media/video/cx88/cx88-mpeg.c b/linux/drivers/media/video/cx88/cx88-mpeg.c index 129dbfa3f..861ac813e 100644 --- a/linux/drivers/media/video/cx88/cx88-mpeg.c +++ b/linux/drivers/media/video/cx88/cx88-mpeg.c @@ -671,7 +671,7 @@ struct cx8802_driver * cx8802_get_driver(struct cx8802_dev *dev, enum cx88_board } /* Driver asked for hardware access. */ -int cx8802_request_acquire(struct cx8802_driver *drv) +static int cx8802_request_acquire(struct cx8802_driver *drv) { struct cx88_core *core = drv->core; @@ -691,7 +691,7 @@ int cx8802_request_acquire(struct cx8802_driver *drv) } /* Driver asked to release hardware. */ -int cx8802_request_release(struct cx8802_driver *drv) +static int cx8802_request_release(struct cx8802_driver *drv) { struct cx88_core *core = drv->core; |