Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 293493
b: refs/heads/master
c: fb97624
h: refs/heads/master
i:
  293491: 5d13915
v: v3
  • Loading branch information
Fabio Estevam authored and Mark Brown committed Mar 7, 2012
1 parent 82d7416 commit edfeea8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 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: 66bf93212f19548f5ed221356b2d70189cc18254
refs/heads/master: fb97624ad61f734837998b316cc4eb1cf899900f
8 changes: 4 additions & 4 deletions trunk/sound/soc/imx/imx-audmux.c
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ static void __init audmux_debugfs_init(void)
}
}

static void __exit audmux_debugfs_remove(void)
static void __devexit audmux_debugfs_remove(void)
{
debugfs_remove_recursive(audmux_debugfs_root);
}
Expand Down Expand Up @@ -249,7 +249,7 @@ int imx_audmux_v2_configure_port(unsigned int port, unsigned int ptcr,
}
EXPORT_SYMBOL_GPL(imx_audmux_v2_configure_port);

static int __init imx_audmux_probe(struct platform_device *pdev)
static int __devinit imx_audmux_probe(struct platform_device *pdev)
{
struct resource *res;
const struct of_device_id *of_id =
Expand All @@ -276,7 +276,7 @@ static int __init imx_audmux_probe(struct platform_device *pdev)
return 0;
}

static int __exit imx_audmux_remove(struct platform_device *pdev)
static int __devexit imx_audmux_remove(struct platform_device *pdev)
{
if (audmux_type == IMX31_AUDMUX)
audmux_debugfs_remove();
Expand All @@ -287,7 +287,7 @@ static int __exit imx_audmux_remove(struct platform_device *pdev)

static struct platform_driver imx_audmux_driver = {
.probe = imx_audmux_probe,
.remove = __exit_p(imx_audmux_remove),
.remove = __devexit_p(imx_audmux_remove),
.id_table = imx_audmux_ids,
.driver = {
.name = DRIVER_NAME,
Expand Down

0 comments on commit edfeea8

Please sign in to comment.