提交 3bdb54fc 编写于 作者: V Víctor Manuel Jáquez Leal 提交者: Greg Kroah-Hartman

staging: tidspbridge: use the driver name string

Instead of assign it to a global variable which is not used anymore.
Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
上级 4f8aae53
...@@ -52,7 +52,6 @@ ...@@ -52,7 +52,6 @@
#endif #endif
/* ----------------------------------- Globals */ /* ----------------------------------- Globals */
#define DRIVER_NAME "DspBridge"
#define DSPBRIDGE_VERSION "0.3" #define DSPBRIDGE_VERSION "0.3"
s32 dsp_debug; s32 dsp_debug;
...@@ -121,8 +120,6 @@ MODULE_AUTHOR("Texas Instruments"); ...@@ -121,8 +120,6 @@ MODULE_AUTHOR("Texas Instruments");
MODULE_LICENSE("GPL"); MODULE_LICENSE("GPL");
MODULE_VERSION(DSPBRIDGE_VERSION); MODULE_VERSION(DSPBRIDGE_VERSION);
static char *driver_name = DRIVER_NAME;
/* /*
* This function is called when an application opens handle to the * This function is called when an application opens handle to the
* bridge driver. * bridge driver.
...@@ -490,7 +487,7 @@ static int __devinit omap34_xx_bridge_probe(struct platform_device *pdev) ...@@ -490,7 +487,7 @@ static int __devinit omap34_xx_bridge_probe(struct platform_device *pdev)
goto err1; goto err1;
/* use 2.6 device model */ /* use 2.6 device model */
err = alloc_chrdev_region(&dev, 0, 1, driver_name); err = alloc_chrdev_region(&dev, 0, 1, "DspBridge");
if (err) { if (err) {
pr_err("%s: Can't get major %d\n", __func__, driver_major); pr_err("%s: Can't get major %d\n", __func__, driver_major);
goto err1; goto err1;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册