Date: Sat, 13 Jun 2009 08:57:05 +0000 (UTC) From: Rafal Jaworowski <raj@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r194101 - in head/sys: dev/sec dev/tsec powerpc/booke Message-ID: <200906130857.n5D8v5mM007958@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: raj Date: Sat Jun 13 08:57:04 2009 New Revision: 194101 URL: http://svn.freebsd.org/changeset/base/194101 Log: Fix Book-E/MPC85XX build. Some prototypes were wrong and got revealed with the recent kobj signature checking. Modified: head/sys/dev/sec/sec.c head/sys/dev/tsec/if_tsec.c head/sys/dev/tsec/if_tsec.h head/sys/powerpc/booke/pmap.c Modified: head/sys/dev/sec/sec.c ============================================================================== --- head/sys/dev/sec/sec.c Sat Jun 13 08:04:56 2009 (r194100) +++ head/sys/dev/sec/sec.c Sat Jun 13 08:57:04 2009 (r194101) @@ -58,7 +58,7 @@ static int sec_attach(device_t dev); static int sec_detach(device_t dev); static int sec_suspend(device_t dev); static int sec_resume(device_t dev); -static void sec_shutdown(device_t dev); +static int sec_shutdown(device_t dev); static void sec_primary_intr(void *arg); static void sec_secondary_intr(void *arg); static int sec_setup_intr(struct sec_softc *sc, struct resource **ires, @@ -500,9 +500,11 @@ sec_resume(device_t dev) return (0); } -static void +static int sec_shutdown(device_t dev) { + + return (0); } static int Modified: head/sys/dev/tsec/if_tsec.c ============================================================================== --- head/sys/dev/tsec/if_tsec.c Sat Jun 13 08:04:56 2009 (r194100) +++ head/sys/dev/tsec/if_tsec.c Sat Jun 13 08:57:04 2009 (r194101) @@ -313,7 +313,7 @@ tsec_detach(struct tsec_softc *sc) return (0); } -void +int tsec_shutdown(device_t dev) { struct tsec_softc *sc; @@ -323,6 +323,7 @@ tsec_shutdown(device_t dev) TSEC_GLOBAL_LOCK(sc); tsec_stop(sc); TSEC_GLOBAL_UNLOCK(sc); + return (0); } int @@ -1582,7 +1583,7 @@ tsec_miibus_readreg(device_t dev, int ph return (TSEC_READ(sc, TSEC_REG_MIIMSTAT)); } -void +int tsec_miibus_writereg(device_t dev, int phy, int reg, int value) { struct tsec_softc *sc; @@ -1606,6 +1607,8 @@ tsec_miibus_writereg(device_t dev, int p if (timeout == 0) device_printf(dev, "Timeout while writing to PHY!\n"); + + return (0); } void Modified: head/sys/dev/tsec/if_tsec.h ============================================================================== --- head/sys/dev/tsec/if_tsec.h Sat Jun 13 08:04:56 2009 (r194100) +++ head/sys/dev/tsec/if_tsec.h Sat Jun 13 08:57:04 2009 (r194101) @@ -358,10 +358,10 @@ void tsec_receive_intr(void *arg); void tsec_transmit_intr(void *arg); int tsec_miibus_readreg(device_t dev, int phy, int reg); -void tsec_miibus_writereg(device_t dev, int phy, int reg, int value); +int tsec_miibus_writereg(device_t dev, int phy, int reg, int value); void tsec_miibus_statchg(device_t dev); int tsec_resume(device_t dev); /* XXX */ -void tsec_shutdown(device_t dev); +int tsec_shutdown(device_t dev); int tsec_suspend(device_t dev); /* XXX */ void tsec_get_hwaddr(struct tsec_softc *sc, uint8_t *addr); Modified: head/sys/powerpc/booke/pmap.c ============================================================================== --- head/sys/powerpc/booke/pmap.c Sat Jun 13 08:04:56 2009 (r194100) +++ head/sys/powerpc/booke/pmap.c Sat Jun 13 08:57:04 2009 (r194101) @@ -275,8 +275,8 @@ void pmap_bootstrap_ap(volatile uint32_t static void mmu_booke_change_wiring(mmu_t, pmap_t, vm_offset_t, boolean_t); static void mmu_booke_clear_modify(mmu_t, vm_page_t); static void mmu_booke_clear_reference(mmu_t, vm_page_t); -static void mmu_booke_copy(pmap_t, pmap_t, vm_offset_t, vm_size_t, - vm_offset_t); +static void mmu_booke_copy(mmu_t, pmap_t, pmap_t, vm_offset_t, + vm_size_t, vm_offset_t); static void mmu_booke_copy_page(mmu_t, vm_page_t, vm_page_t); static void mmu_booke_enter(mmu_t, pmap_t, vm_offset_t, vm_page_t, vm_prot_t, boolean_t); @@ -1890,8 +1890,8 @@ mmu_booke_deactivate(mmu_t mmu, struct t * This routine is only advisory and need not do anything. */ static void -mmu_booke_copy(pmap_t dst_pmap, pmap_t src_pmap, vm_offset_t dst_addr, - vm_size_t len, vm_offset_t src_addr) +mmu_booke_copy(mmu_t mmu, pmap_t dst_pmap, pmap_t src_pmap, + vm_offset_t dst_addr, vm_size_t len, vm_offset_t src_addr) { }
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200906130857.n5D8v5mM007958>