From 2ac5b2f7cffca8545c22cfb709d3e61aa33dc4db Mon Sep 17 00:00:00 2001 From: reinoud Date: Tue, 20 Mar 2001 12:48:37 +0000 Subject: [PATCH] Replace `bitsperpixel' by `log2_bpp' for thats the value that is in it and not the number of bits per pixel ! --- sys/arch/arm32/include/bootconfig.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/arch/arm32/include/bootconfig.h b/sys/arch/arm32/include/bootconfig.h index 96db4ff6cd8c..aa0e09ea78af 100644 --- a/sys/arch/arm32/include/bootconfig.h +++ b/sys/arch/arm32/include/bootconfig.h @@ -1,4 +1,4 @@ -/* $NetBSD: bootconfig.h,v 1.9 2001/02/18 00:55:31 reinoud Exp $ */ +/* $NetBSD: bootconfig.h,v 1.10 2001/03/20 12:48:37 reinoud Exp $ */ /* * Copyright (c) 1994 Mark Brinicombe. @@ -67,7 +67,7 @@ typedef struct _BootConfig { u_int display_size; u_int width; u_int height; - u_int bitsperpixel; + u_int log2_bpp; PhysMem dram[DRAM_BLOCKS]; PhysMem vram[1];