svn commit: r221198 - head/sys/mips/atheros
Adrian Chadd
adrian at FreeBSD.org
Fri Apr 29 06:25:12 UTC 2011
Author: adrian
Date: Fri Apr 29 06:25:11 2011
New Revision: 221198
URL: http://svn.freebsd.org/changeset/base/221198
Log:
Tidy up the naming of the ip2 DDR flush routine, and add an inline
accessor method (which is currently unused) in there.
Modified:
head/sys/mips/atheros/ar71xx_cpudef.h
Modified: head/sys/mips/atheros/ar71xx_cpudef.h
==============================================================================
--- head/sys/mips/atheros/ar71xx_cpudef.h Fri Apr 29 05:00:48 2011 (r221197)
+++ head/sys/mips/atheros/ar71xx_cpudef.h Fri Apr 29 06:25:11 2011 (r221198)
@@ -51,7 +51,7 @@ struct ar71xx_cpu_def {
* This flush is done before the IRQ is handled to make
* sure the driver correctly sees any memory updates.
*/
- void (* ar71xx_chip_irq_flush_ip2) (void);
+ void (* ar71xx_chip_ddr_flush_ip2) (void);
/*
* The USB peripheral init code is subtly different for
* each chip.
@@ -106,6 +106,11 @@ static inline void ar71xx_init_usb_perip
ar71xx_cpu_ops->ar71xx_chip_init_usb_peripheral();
}
+static inline void ar71xx_device_ddr_flush_ip2(void)
+{
+ ar71xx_cpu_ops->ar71xx_chip_ddr_flush_ip2();
+}
+
/* XXX shouldn't be here! */
extern uint32_t u_ar71xx_cpu_freq;
extern uint32_t u_ar71xx_ahb_freq;
More information about the svn-src-head
mailing list