Remove an unneeded addition of 0 to what is now a void*.

This commit is contained in:
he 2007-03-05 15:40:28 +00:00
parent b4a156898e
commit ac662e9e5f
1 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: arcvideo.c,v 1.11 2007/03/04 05:59:05 christos Exp $ */ /* $NetBSD: arcvideo.c,v 1.12 2007/03/05 15:40:28 he Exp $ */
/*- /*-
* Copyright (c) 1998, 2000 Ben Harris * Copyright (c) 1998, 2000 Ben Harris
* All rights reserved. * All rights reserved.
@ -37,7 +37,7 @@
*/ */
#include <sys/cdefs.h> #include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: arcvideo.c,v 1.11 2007/03/04 05:59:05 christos Exp $"); __KERNEL_RCSID(0, "$NetBSD: arcvideo.c,v 1.12 2007/03/05 15:40:28 he Exp $");
#include <sys/param.h> #include <sys/param.h>
#include <sys/device.h> #include <sys/device.h>
@ -319,7 +319,7 @@ arccons_init(void)
/* Set up arccons_ri */ /* Set up arccons_ri */
memset(ri, 0, sizeof(*ri)); memset(ri, 0, sizeof(*ri));
ri->ri_depth = bootconfig.bpp; ri->ri_depth = bootconfig.bpp;
ri->ri_bits = (u_char *)(MEMC_PHYS_BASE + 0); ri->ri_bits = (u_char *)(MEMC_PHYS_BASE);
ri->ri_width = bootconfig.xpixels; ri->ri_width = bootconfig.xpixels;
ri->ri_height = bootconfig.ypixels; ri->ri_height = bootconfig.ypixels;
ri->ri_stride = ((bootconfig.xpixels * bootconfig.bpp + 31) >> 5) << 2; ri->ri_stride = ((bootconfig.xpixels * bootconfig.bpp + 31) >> 5) << 2;