dect
/
linux-2.6
Archived
13
0
Fork 0

sh: remove unneeded cast

now that platform_device_register_simple() takes a "const chat *".

Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
This commit is contained in:
Stephen Rothwell 2008-02-02 23:03:47 +11:00 committed by Paul Mundt
parent 2a3eeba88f
commit 222dc791e1
1 changed files with 1 additions and 1 deletions

View File

@ -350,7 +350,7 @@ int register_dmac(struct dma_info *info)
BUG_ON((info->flags & DMAC_CHANNELS_CONFIGURED) && !info->channels);
info->pdev = platform_device_register_simple((char *)info->name, -1,
info->pdev = platform_device_register_simple(info->name, -1,
NULL, 0);
if (IS_ERR(info->pdev))
return PTR_ERR(info->pdev);