diff options
author | cognet <cognet@FreeBSD.org> | 2007-11-08 13:19:08 +0000 |
---|---|---|
committer | cognet <cognet@FreeBSD.org> | 2007-11-08 13:19:08 +0000 |
commit | 6d7755ffed75007fcc52c6aa8ee3347a280b4706 (patch) | |
tree | fc22fb9dde15e27c66e1bf24df10c0452bcf9082 | |
parent | 0033cd00be808341b0532f104df8a5c40837b5c5 (diff) | |
download | FreeBSD-src-6d7755ffed75007fcc52c6aa8ee3347a280b4706.zip FreeBSD-src-6d7755ffed75007fcc52c6aa8ee3347a280b4706.tar.gz |
Add entries for the L2 cache-related functions for armv5.
Spotted out by: Rafal Jaworowski
-rw-r--r-- | sys/arm/arm/cpufunc.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sys/arm/arm/cpufunc.c b/sys/arm/arm/cpufunc.c index 9562fac..319900b 100644 --- a/sys/arm/arm/cpufunc.c +++ b/sys/arm/arm/cpufunc.c @@ -333,6 +333,11 @@ struct cpu_functions armv5_ec_cpufuncs = { armv5_ec_idcache_wbinv_all, /* idcache_wbinv_all */ armv5_ec_idcache_wbinv_range, /* idcache_wbinv_range */ + cpufunc_nullop, /* l2cache_wbinv_all */ + (void *)cpufunc_nullop, /* l2cache_wbinv_range */ + (void *)cpufunc_nullop, /* l2cache_inv_range */ + (void *)cpufunc_nullop, /* l2cache_wb_range */ + /* Other functions */ cpufunc_nullop, /* flush_prefetchbuf */ |