diff options
author | Antonino A. Daplas <[email protected]> | 2005-11-07 01:00:46 -0800 |
---|---|---|
committer | Linus Torvalds <[email protected]> | 2005-11-07 07:53:52 -0800 |
commit | 2fe0175491c4784d95f3237ebdc985da7b26a99d (patch) | |
tree | bc72a82797aee165be4b95492628bf1d6127e21a | |
parent | 475666d4f80f148a091fa20257fe2381223d3c62 (diff) |
[PATCH] nvidiafb: Fix empty macro
Use do {} while(0) for empty reverse_order() macro.
Signed-off-by: Antonino Daplas <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
-rw-r--r-- | drivers/video/nvidia/nv_local.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/nvidia/nv_local.h b/drivers/video/nvidia/nv_local.h index afee284fc73c..4243d7fae972 100644 --- a/drivers/video/nvidia/nv_local.h +++ b/drivers/video/nvidia/nv_local.h @@ -105,7 +105,7 @@ do { \ *a = byte_rev[*a]; \ } while(0) #else -#define reverse_order(l) +#define reverse_order(l) do { } while(0) #endif /* __LITTLE_ENDIAN */ #endif /* __NV_LOCAL_H__ */ |