Fix a typo in register definitions: looks like somebody copied the
CB_SOCKET_STAT_3VSOCK definition to CB_SOCKET_STAT_XVSOCK and CB_SOCKET_STAT_YVSOCK definitions without updating the numbers. It doesn't look like CB_SOCKET_STAT_XVSOCK and CB_SOCKET_STAT_YVSOCK are used anywhere, so this will not make any functional difference.
This commit is contained in:
parent
15f26a44dc
commit
425bb71b7d
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: pccbbreg.h,v 1.9 2005/12/11 12:22:50 christos Exp $ */
|
||||
/* $NetBSD: pccbbreg.h,v 1.10 2006/04/25 04:22:15 dyoung Exp $ */
|
||||
/*
|
||||
* Copyright (c) 1999 HAYAKAWA Koichi. All rights reserved.
|
||||
*
|
||||
|
@ -217,8 +217,8 @@
|
|||
#define CB_SOCKET_STAT_YVCARD 0x02000 /* Y.Y V Card */
|
||||
#define CB_SOCKET_STAT_5VSOCK 0x10000000 /* 5 V Socket */
|
||||
#define CB_SOCKET_STAT_3VSOCK 0x20000000 /* 3.3 V Socket */
|
||||
#define CB_SOCKET_STAT_XVSOCK 0x20000000 /* X.X V Socket */
|
||||
#define CB_SOCKET_STAT_YVSOCK 0x20000000 /* Y.Y V Socket */
|
||||
#define CB_SOCKET_STAT_XVSOCK 0x40000000 /* X.X V Socket */
|
||||
#define CB_SOCKET_STAT_YVSOCK 0x80000000 /* Y.Y V Socket */
|
||||
|
||||
/* socket force event register (CB_SOCKET_FORCE) elements */
|
||||
#define CB_SOCKET_FORCE_BADVCC 0x0200 /* Bad Vcc Request */
|
||||
|
|
Loading…
Reference in New Issue