remove prototypes with no matching function
authorjsg <jsg@openbsd.org>
Tue, 18 Jun 2024 12:37:29 +0000 (12:37 +0000)
committerjsg <jsg@openbsd.org>
Tue, 18 Jun 2024 12:37:29 +0000 (12:37 +0000)
sys/arch/i386/include/cpu.h
sys/arch/i386/include/pmap.h
sys/arch/powerpc/include/pmap.h
sys/dev/ic/wdcvar.h
sys/uvm/uvm_map.h

index d9b5cb5..da2b40b 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: cpu.h,v 1.191 2024/06/09 21:15:29 jca Exp $   */
+/*     $OpenBSD: cpu.h,v 1.192 2024/06/18 12:37:29 jsg Exp $   */
 /*     $NetBSD: cpu.h,v 1.35 1996/05/05 19:29:26 christos Exp $        */
 
 /*-
@@ -458,7 +458,6 @@ void k1x_setperf(int);
 #endif
 
 /* npx.c */
-void   npxdrop(struct proc *);
 void   npxsave_proc(struct proc *, int);
 void   npxsave_cpu(struct cpu_info *, int);
 
index b56a740..2ead66e 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: pmap.h,v 1.94 2023/12/11 22:12:53 kettenis Exp $      */
+/*     $OpenBSD: pmap.h,v 1.95 2024/06/18 12:37:29 jsg Exp $   */
 /*     $NetBSD: pmap.h,v 1.44 2000/04/24 17:18:18 thorpej Exp $        */
 
 /*
@@ -297,7 +297,6 @@ void pmap_pinit_pd_pae(pmap_t);
 void pmap_zero_phys_pae(paddr_t);
 int pmap_zero_page_uncached_pae(paddr_t);
 void pmap_copy_page_pae(struct vm_page *, struct vm_page *);
-void pae_copy_phys(paddr_t, paddr_t, int, int);
 
 #define        pmap_pte_set            (*pmap_pte_set_p)
 #define        pmap_pte_setbits        (*pmap_pte_setbits_p)
index 80323ba..4b80cf8 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: pmap.h,v 1.65 2023/12/11 22:12:53 kettenis Exp $      */
+/*     $OpenBSD: pmap.h,v 1.66 2024/06/18 12:37:29 jsg Exp $   */
 /*     $NetBSD: pmap.h,v 1.1 1996/09/30 16:34:29 ws Exp $      */
 
 /*-
@@ -138,7 +138,6 @@ void pmap_enable_mmu();
 int pmap_clear_attrs(struct vm_page *, unsigned int);
 int pmap_test_attrs(struct vm_page *, unsigned int);
 
-void pmap_pinit(struct pmap *);
 void pmap_release(struct pmap *);
 
 #ifdef ALTIVEC
index 8f4b08d..cb3a9e8 100644 (file)
@@ -1,4 +1,4 @@
-/*      $OpenBSD: wdcvar.h,v 1.58 2024/05/29 00:48:15 jsg Exp $     */
+/*      $OpenBSD: wdcvar.h,v 1.59 2024/06/18 12:37:29 jsg Exp $     */
 /*     $NetBSD: wdcvar.h,v 1.17 1999/04/11 20:50:29 bouyer Exp $       */
 
 /*-
@@ -287,9 +287,6 @@ void  wdccommandshort(struct channel_softc *, int, int);
 void  wdctimeout(void *arg);
 void  wdc_do_reset(struct channel_softc *);
 
-int   wdc_addref(struct channel_softc *);
-void  wdc_delref(struct channel_softc *);
-
 /*
  * ST506 spec says that if READY or SEEKCMPLT go off, then the read or write
  * command is aborted.
index 2fd80e8..3a47d6d 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: uvm_map.h,v 1.89 2024/04/02 08:39:17 deraadt Exp $    */
+/*     $OpenBSD: uvm_map.h,v 1.90 2024/06/18 12:37:29 jsg Exp $        */
 /*     $NetBSD: uvm_map.h,v 1.24 2001/02/18 21:19:08 chs Exp $ */
 
 /*
@@ -363,10 +363,6 @@ void               uvm_map_init(void);
 boolean_t      uvm_map_lookup_entry(struct vm_map *, vaddr_t, vm_map_entry_t *);
 boolean_t      uvm_map_is_stack_remappable(struct vm_map *, vaddr_t, vsize_t, int);
 int            uvm_map_remap_as_stack(struct proc *, vaddr_t, vsize_t);
-int            uvm_map_replace(struct vm_map *, vaddr_t, vaddr_t,
-                   vm_map_entry_t, int);
-int            uvm_map_reserve(struct vm_map *, vsize_t, vaddr_t, vsize_t,
-                   vaddr_t *);
 void           uvm_map_setup(struct vm_map *, pmap_t, vaddr_t, vaddr_t, int);
 int            uvm_map_submap(struct vm_map *, vaddr_t, vaddr_t,
                    struct vm_map *);