mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-13 00:20:06 +00:00
newport_con warning fix
drivers/video/console/newport_con.c: In function `newport_console_init': drivers/video/console/newport_con.c:743: warning: return makes integer from pointer without a cast Although one wonders whether that should have been -ENODEV... Cc: "Antonino A. Daplas" <adaplas@pol.net> Cc: Ralf Baechle <ralf@linux-mips.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
0aa42632d3
commit
4ae8aeae47
@ -738,9 +738,8 @@ const struct consw newport_con = {
|
|||||||
#ifdef MODULE
|
#ifdef MODULE
|
||||||
static int __init newport_console_init(void)
|
static int __init newport_console_init(void)
|
||||||
{
|
{
|
||||||
|
|
||||||
if (!sgi_gfxaddr)
|
if (!sgi_gfxaddr)
|
||||||
return NULL;
|
return 0;
|
||||||
|
|
||||||
if (!npregs)
|
if (!npregs)
|
||||||
npregs = (struct newport_regs *)/* ioremap cannot fail */
|
npregs = (struct newport_regs *)/* ioremap cannot fail */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user