1: /* 2: * Copyright (c) 1986 Regents of the University of California. 3: * All rights reserved. The Berkeley software License Agreement 4: * specifies the terms and conditions for redistribution. 5: * 6: * @(#)rkauto.c 1.2 (2.11BSD GTE) 12/30/92 7: */ 8: 9: #include "param.h" 10: #include "../machine/autoconfig.h" 11: #include "../machine/machparam.h" 12: 13: #include "rkreg.h" 14: 15: rkprobe(addr,vector) 16: struct rkdevice *addr; 17: int vector; 18: { 19: stuff(RKCS_IDE | RKCS_DRESET | RKCS_GO, (&(addr->rkcs))); 20: DELAY(10L); 21: stuff(0, (&(addr->rkcs))); 22: return(ACP_IFINTR); 23: }