From: "Antonino A. Daplas" Use do {} while(0) for empty reverse_order() macro. Signed-off-by: Antonino Daplas Signed-off-by: Andrew Morton --- drivers/video/nvidia/nv_local.h | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/video/nvidia/nv_local.h~nvidiafb-fix-empty-macro drivers/video/nvidia/nv_local.h --- devel/drivers/video/nvidia/nv_local.h~nvidiafb-fix-empty-macro 2005-10-18 19:12:21.000000000 -0700 +++ devel-akpm/drivers/video/nvidia/nv_local.h 2005-10-18 19:12:21.000000000 -0700 @@ -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__ */ _