remove unused intc_intr_bootstrap()
authorjsg <jsg@openbsd.org>
Mon, 29 Apr 2024 12:42:06 +0000 (12:42 +0000)
committerjsg <jsg@openbsd.org>
Mon, 29 Apr 2024 12:42:06 +0000 (12:42 +0000)
sys/arch/armv7/omap/intc.c
sys/arch/armv7/omap/intc.h

index 4c4fe60..507a4a8 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: intc.c,v 1.13 2024/04/29 12:33:17 jsg Exp $ */
+/* $OpenBSD: intc.c,v 1.14 2024/04/29 12:42:06 jsg Exp $ */
 /*
  * Copyright (c) 2007,2009 Dale Rahn <drahn@openbsd.org>
  *
@@ -308,18 +308,6 @@ intc_setipl(int new)
        restore_interrupts(psw);
 }
 
-void
-intc_intr_bootstrap(vaddr_t addr)
-{
-       int i, j;
-       extern struct bus_space armv7_bs_tag;
-       intc_iot = &armv7_bs_tag;
-       intc_ioh = addr;
-       for (i = 0; i < INTC_NUM_BANKS; i++)
-               for (j = 0; j < NIPL; j++)
-                       intc_imask[i][j] = 0xffffffff;
-}
-
 void
 intc_irq_handler(void *frame)
 {
index c5d5880..ba6122e 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: intc.h,v 1.6 2024/04/29 12:33:17 jsg Exp $ */
+/*     $OpenBSD: intc.h,v 1.7 2024/04/29 12:42:06 jsg Exp $ */
 /*
  * Copyright (c) 2007,2009 Dale Rahn <drahn@openbsd.org>
  *
@@ -47,16 +47,6 @@ find_first_bit( uint32_t bits )
        return 31-count;
 }
 
-
-/*
- * This function *MUST* be called very early on in a port's
- * initarm() function, before ANY spl*() functions are called.
- *
- * The parameter is the virtual address of the OMAPINTC's Interrupt
- * Controller registers.
- */
-void intc_intr_bootstrap(vaddr_t);
-
 void intc_irq_handler(void *);
 void *intc_intr_establish(int irqno, int level, struct cpu_info *ci,
     int (*func)(void *), void *cookie, char *name);