diff options
| author | tsutsui <tsutsui@NetBSD.org> | 2008-11-16 02:11:29 +0000 |
|---|---|---|
| committer | tsutsui <tsutsui@NetBSD.org> | 2008-11-16 02:11:29 +0000 |
| commit | 2a3ae26e886d3d4c68682e19afafca2080d6ff4b (patch) | |
| tree | aad4740fd5c0ae6e45d35e3bb6682130a9e487b8 /sys/dev | |
| parent | 001faf8e6c9e0a23c60d693a1d8fb013b0921b03 (diff) | |
Fix tyop in #ifdef TLDEBUG part.
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/pci/if_tl.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/pci/if_tl.c b/sys/dev/pci/if_tl.c index 14e4641d05b..23a5ca3937e 100644 --- a/sys/dev/pci/if_tl.c +++ b/sys/dev/pci/if_tl.c @@ -1,4 +1,4 @@ -/* $NetBSD: if_tl.c,v 1.90 2008/10/04 21:00:28 bouyer Exp $ */ +/* $NetBSD: if_tl.c,v 1.91 2008/11/16 02:11:29 tsutsui Exp $ */ /* * Copyright (c) 1997 Manuel Bouyer. All rights reserved. @@ -36,7 +36,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: if_tl.c,v 1.90 2008/10/04 21:00:28 bouyer Exp $"); +__KERNEL_RCSID(0, "$NetBSD: if_tl.c,v 1.91 2008/11/16 02:11:29 tsutsui Exp $"); #undef TLDEBUG #define TL_PRIV_STATS @@ -385,7 +385,7 @@ tl_pci_attach(device_t parent, device_t self, void *aux) sc->sc_i2c.ic_write_byte = tl_i2c_write_byte; #ifdef TLDEBUG - aprint_debug_dev(sefl, "default values of INTreg: 0x%x\n", + aprint_debug_dev(self, "default values of INTreg: 0x%x\n", tl_intreg_read(sc, TL_INT_Defaults)); #endif |
