diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2002-10-15 18:43:27 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2002-10-15 18:43:27 +0000 |
commit | ebad31090191ceeff9eefeaa23e32fb567ab6ed8 (patch) | |
tree | 04459ecb5b95f7aa40f4bb9c30bb598c1bddbfcd | |
parent | aa1ca406d637a1eabbff272c0508bed5eb1147a1 (diff) |
replace max() with cond expression
-rw-r--r-- | linux-core/drm_os_linux.h | 2 | ||||
-rw-r--r-- | linux/drm_os_linux.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/linux-core/drm_os_linux.h b/linux-core/drm_os_linux.h index cf003137..e9b24356 100644 --- a/linux-core/drm_os_linux.h +++ b/linux-core/drm_os_linux.h @@ -74,7 +74,7 @@ do { \ ret = -EBUSY; \ break; \ } \ - schedule_timeout(max(HZ/100,1)); \ + schedule_timeout((HZ/100 > 1) ? HZ/100 : 1); \ if (signal_pending(current)) { \ ret = -EINTR; \ break; \ diff --git a/linux/drm_os_linux.h b/linux/drm_os_linux.h index cf003137..e9b24356 100644 --- a/linux/drm_os_linux.h +++ b/linux/drm_os_linux.h @@ -74,7 +74,7 @@ do { \ ret = -EBUSY; \ break; \ } \ - schedule_timeout(max(HZ/100,1)); \ + schedule_timeout((HZ/100 > 1) ? HZ/100 : 1); \ if (signal_pending(current)) { \ ret = -EINTR; \ break; \ |