summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/video.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/include/video.h b/include/video.h
index c7afe22d823..4ec71ab16da 100644
--- a/include/video.h
+++ b/include/video.h
@@ -57,12 +57,8 @@ enum video_log2_bpp {
VIDEO_BPP32,
};
-/*
- * Convert enum video_log2_bpp to bytes and bits. Note we omit the outer
- * brackets to allow multiplication by fractional pixels.
- */
+/* Convert enum video_log2_bpp to bytes and bits */
#define VNBYTES(bpix) ((1 << (bpix)) / 8)
-
#define VNBITS(bpix) (1 << (bpix))
enum video_format {