Date: Tue, 15 Jan 2013 22:11:28 +0000 (UTC) From: Olivier Houchard <cognet@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r245478 - head/sys/arm/arm Message-ID: <201301152211.r0FMBSf8062228@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: cognet Date: Tue Jan 15 22:11:28 2013 New Revision: 245478 URL: http://svnweb.freebsd.org/changeset/base/245478 Log: Use armv7_drain_writebuf() and armv7_context_switch, instead of the arm11 variants. Modified: head/sys/arm/arm/cpufunc.c Modified: head/sys/arm/arm/cpufunc.c ============================================================================== --- head/sys/arm/arm/cpufunc.c Tue Jan 15 22:09:11 2013 (r245477) +++ head/sys/arm/arm/cpufunc.c Tue Jan 15 22:11:28 2013 (r245478) @@ -1146,7 +1146,7 @@ struct cpu_functions cortexa_cpufuncs = /* Other functions */ cpufunc_nullop, /* flush_prefetchbuf */ - arm11_drain_writebuf, /* drain_writebuf */ + armv7_drain_writebuf, /* drain_writebuf */ cpufunc_nullop, /* flush_brnchtgt_C */ (void *)cpufunc_nullop, /* flush_brnchtgt_E */ @@ -1157,7 +1157,7 @@ struct cpu_functions cortexa_cpufuncs = cpufunc_null_fixup, /* dataabt_fixup */ cpufunc_null_fixup, /* prefetchabt_fixup */ - arm11_context_switch, /* context_switch */ + armv7_context_switch, /* context_switch */ cortexa_setup /* cpu setup */ };
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201301152211.r0FMBSf8062228>