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: * @(#)cauto.c 1.2 (2.11BSD GTE) 12/30/92 7: */ 8: 9: #include "param.h" 10: #include "../machine/autoconfig.h" 11: #include "cons.h" 12: 13: cnprobe(addr, vector) 14: struct dldevice *addr; 15: int vector; 16: { 17: stuff(grab(&(addr->dlxcsr)) | DLXCSR_TIE, &(addr->dlxcsr)); 18: DELAY(35000L); 19: DELAY(35000L); 20: /* 21: * Leave TIE enabled; cons.c never turns it off 22: * (and this could be the console). 23: */ 24: return(ACP_IFINTR); 25: }