Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 181596
b: refs/heads/master
c: 9420048
h: refs/heads/master
v: v3
  • Loading branch information
Mauro Carvalho Chehab committed Feb 26, 2010
1 parent c6d6d40 commit a59802e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 583d338ddda291e3244c7f3a785973c51dcce84e
refs/heads/master: 9420048c6e3ce43b428cb5965ba0d568bc145978
12 changes: 6 additions & 6 deletions trunk/drivers/media/video/cx18/cx18-alsa-main.c
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ static void snd_cx18_card_private_free(struct snd_card *sc)
sc->private_free = NULL;
}

static int __init snd_cx18_card_create(struct v4l2_device *v4l2_dev,
static int snd_cx18_card_create(struct v4l2_device *v4l2_dev,
struct snd_card *sc,
struct snd_cx18_card **cxsc)
{
Expand All @@ -111,7 +111,7 @@ static int __init snd_cx18_card_create(struct v4l2_device *v4l2_dev,
return 0;
}

static int __init snd_cx18_card_set_names(struct snd_cx18_card *cxsc)
static int snd_cx18_card_set_names(struct snd_cx18_card *cxsc)
{
struct cx18 *cx = to_cx18(cxsc->v4l2_dev);
struct snd_card *sc = cxsc->sc;
Expand All @@ -131,7 +131,7 @@ static int __init snd_cx18_card_set_names(struct snd_cx18_card *cxsc)
return 0;
}

static int __init snd_cx18_init(struct v4l2_device *v4l2_dev)
static int snd_cx18_init(struct v4l2_device *v4l2_dev)
{
struct cx18 *cx = to_cx18(v4l2_dev);
struct snd_card *sc = NULL;
Expand Down Expand Up @@ -242,7 +242,7 @@ static int __init cx18_alsa_init(void)
return 0;
}

static void snd_cx18_exit(struct snd_cx18_card *cxsc)
static void __exit snd_cx18_exit(struct snd_cx18_card *cxsc)
{
struct cx18 *cx = to_cx18(cxsc->v4l2_dev);

Expand All @@ -252,7 +252,7 @@ static void snd_cx18_exit(struct snd_cx18_card *cxsc)
cx->alsa = NULL;
}

static int cx18_alsa_exit_callback(struct device *dev, void *data)
static int __exit cx18_alsa_exit_callback(struct device *dev, void *data)
{
struct v4l2_device *v4l2_dev = dev_get_drvdata(dev);
struct snd_cx18_card *cxsc;
Expand All @@ -274,7 +274,7 @@ static int cx18_alsa_exit_callback(struct device *dev, void *data)
return 0;
}

static void cx18_alsa_exit(void)
static void __exit cx18_alsa_exit(void)
{
struct device_driver *drv;
int ret;
Expand Down

0 comments on commit a59802e

Please sign in to comment.