Do not print "M41ST84 Real-time Clock/NVRAM", but "M41T8x Real-time Clock"

when STRTC_NO_USERRAM is defined. This driver should work for all M41T8x
compatible chips (tested on my DSM-G600 with M41T80).
This commit is contained in:
phx 2011-04-17 14:58:26 +00:00
parent 847aca0706
commit a492cb9f47
1 changed files with 7 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: m41st84.c,v 1.16 2010/10/10 05:17:44 kiyohara Exp $ */
/* $NetBSD: m41st84.c,v 1.17 2011/04/17 14:58:26 phx Exp $ */
/*
* Copyright (c) 2003 Wasabi Systems, Inc.
@ -36,7 +36,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: m41st84.c,v 1.16 2010/10/10 05:17:44 kiyohara Exp $");
__KERNEL_RCSID(0, "$NetBSD: m41st84.c,v 1.17 2011/04/17 14:58:26 phx Exp $");
#include "opt_strtc.h"
@ -105,9 +105,13 @@ strtc_attach(device_t parent, device_t self, void *arg)
struct strtc_softc *sc = device_private(self);
struct i2c_attach_args *ia = arg;
#ifndef STRTC_NO_USERRAM
aprint_naive(": Real-time Clock/NVRAM\n");
aprint_normal(": M41ST84 Real-time Clock/NVRAM\n");
#else
aprint_naive(": Real-time Clock\n");
aprint_normal(": M41T8x Real-time Clock\n");
#endif
sc->sc_tag = ia->ia_tag;
sc->sc_address = ia->ia_addr;
sc->sc_dev = self;