Fix wrong type.

This commit is contained in:
tsutsui 2008-03-29 07:20:01 +00:00
parent 440f7c7b53
commit 33ce2fbee5
2 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: mc146818var.h,v 1.5 2008/03/28 19:05:50 tsutsui Exp $ */
/* $NetBSD: mc146818var.h,v 1.6 2008/03/29 07:20:01 tsutsui Exp $ */
/*
* Copyright (c) 2003 Izumi Tsutsui. All rights reserved.
@ -27,7 +27,7 @@
*/
struct mc146818_softc {
device_t *sc_dev;
device_t sc_dev;
bus_space_tag_t sc_bst; /* bus space tag */
bus_space_handle_t sc_bsh; /* bus space handle */

View File

@ -1,4 +1,4 @@
/* $NetBSD: mk48txxvar.h,v 1.4 2008/03/28 20:26:13 tsutsui Exp $ */
/* $NetBSD: mk48txxvar.h,v 1.5 2008/03/29 07:20:01 tsutsui Exp $ */
/*-
* Copyright (c) 2000 The NetBSD Foundation, Inc.
* All rights reserved.
@ -41,7 +41,7 @@ typedef uint8_t (*mk48txx_nvrd_t)(struct mk48txx_softc *, int);
typedef void (*mk48txx_nvwr_t)(struct mk48txx_softc *, int, uint8_t);
struct mk48txx_softc {
device_t *sc_dev;
device_t sc_dev;
bus_space_tag_t sc_bst; /* bus tag & handle */
bus_space_handle_t sc_bsh; /* */