diff options
author | Glenn Elliott <gelliott@cs.unc.edu> | 2012-03-04 19:47:13 -0500 |
---|---|---|
committer | Glenn Elliott <gelliott@cs.unc.edu> | 2012-03-04 19:47:13 -0500 |
commit | c71c03bda1e86c9d5198c5d83f712e695c4f2a1e (patch) | |
tree | ecb166cb3e2b7e2adb3b5e292245fefd23381ac8 /drivers/net/skfp/hwt.c | |
parent | ea53c912f8a86a8567697115b6a0d8152beee5c8 (diff) | |
parent | 6a00f206debf8a5c8899055726ad127dbeeed098 (diff) |
Merge branch 'mpi-master' into wip-k-fmlpwip-k-fmlp
Conflicts:
litmus/sched_cedf.c
Diffstat (limited to 'drivers/net/skfp/hwt.c')
-rw-r--r-- | drivers/net/skfp/hwt.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/skfp/hwt.c b/drivers/net/skfp/hwt.c index 053151468f93..c0798fd2ca69 100644 --- a/drivers/net/skfp/hwt.c +++ b/drivers/net/skfp/hwt.c | |||
@@ -179,7 +179,7 @@ u_long hwt_read(struct s_smc *smc) | |||
179 | else | 179 | else |
180 | smc->hw.t_stop = smc->hw.t_start - tr ; | 180 | smc->hw.t_stop = smc->hw.t_start - tr ; |
181 | } | 181 | } |
182 | return (smc->hw.t_stop) ; | 182 | return smc->hw.t_stop; |
183 | } | 183 | } |
184 | 184 | ||
185 | #ifdef PCI | 185 | #ifdef PCI |
@@ -208,7 +208,7 @@ u_long hwt_quick_read(struct s_smc *smc) | |||
208 | outpw(ADDR(B2_TI_CRTL), TIM_START) ; | 208 | outpw(ADDR(B2_TI_CRTL), TIM_START) ; |
209 | outpd(ADDR(B2_TI_INI),interval) ; | 209 | outpd(ADDR(B2_TI_INI),interval) ; |
210 | 210 | ||
211 | return(time) ; | 211 | return time; |
212 | } | 212 | } |
213 | 213 | ||
214 | /************************ | 214 | /************************ |
@@ -221,7 +221,7 @@ u_long hwt_quick_read(struct s_smc *smc) | |||
221 | * para start start time | 221 | * para start start time |
222 | * duration time to wait | 222 | * duration time to wait |
223 | * | 223 | * |
224 | * NOTE: The fuction will return immediately, if the timer is not | 224 | * NOTE: The function will return immediately, if the timer is not |
225 | * started | 225 | * started |
226 | ************************/ | 226 | ************************/ |
227 | void hwt_wait_time(struct s_smc *smc, u_long start, long int duration) | 227 | void hwt_wait_time(struct s_smc *smc, u_long start, long int duration) |