diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2002-06-07 07:14:49 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2002-06-07 07:14:49 +0000 |
commit | 843b27eb0c466ac940633b8fef22b72fe516797c (patch) | |
tree | ede4fdbefb87193c5aa13264ad3ed79a39953389 /sys/arch/macppc/dev/adb_direct.h | |
parent | 4816cf65812cf69013a62e620de3da7942d3f4cb (diff) |
Vacuum cleaning of the adb code, step 1: random KNF, remove mac68k
leftovers, unused variables and functions, fix some comments, etc.
Diffstat (limited to 'sys/arch/macppc/dev/adb_direct.h')
-rw-r--r-- | sys/arch/macppc/dev/adb_direct.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/sys/arch/macppc/dev/adb_direct.h b/sys/arch/macppc/dev/adb_direct.h index bc96f0a51e2..84a430d37be 100644 --- a/sys/arch/macppc/dev/adb_direct.h +++ b/sys/arch/macppc/dev/adb_direct.h @@ -1,4 +1,4 @@ -/* $OpenBSD: adb_direct.h,v 1.2 2002/03/14 01:26:36 millert Exp $ */ +/* $OpenBSD: adb_direct.h,v 1.3 2002/06/07 07:14:48 miod Exp $ */ /* $NetBSD: adb_direct.h,v 1.1 1998/05/15 10:15:47 tsubai Exp $ */ /* @@ -38,8 +38,6 @@ /* types of adb hardware that we (will eventually) support */ #define ADB_HW_UNKNOWN 0x01 /* don't know */ -#define ADB_HW_II 0x02 /* Mac II series */ -#define ADB_HW_IISI 0x03 /* Mac IIsi series */ #define ADB_HW_PB 0x04 /* PowerBook series */ #define ADB_HW_CUDA 0x05 /* Machines with a Cuda chip */ @@ -49,7 +47,6 @@ void ADBReInit(void); int GetIndADB(ADBDataBlock *info, int index); int GetADBInfo(ADBDataBlock *info, int adbAddr); int SetADBInfo(ADBSetInfoBlock *info, int adbAddr); -int ADBOp(Ptr buffer, Ptr compRout, Ptr data, short commandNum); int adb_read_date_time(unsigned long *); int adb_set_date_time(unsigned long); int adb_op_sync(Ptr, Ptr, Ptr, short); |