summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--drivers/media/video/meye.c8
-rw-r--r--drivers/media/video/meye.h2
2 files changed, 6 insertions, 4 deletions
diff --git a/drivers/media/video/meye.c b/drivers/media/video/meye.c
index 53d5722ac2a8..bb6e40dcb4b0 100644
--- a/drivers/media/video/meye.c
+++ b/drivers/media/video/meye.c
@@ -160,13 +160,15 @@ static void rvfree(void * mem, unsigned long size) {
}
}
-/* return a page table pointing to N pages of locked memory
+/*
+ * return a page table pointing to N pages of locked memory
*
* NOTE: The meye device expects dma_addr_t size to be 32 bits
* (the toc must be exactly 1024 entries each of them being 4 bytes
* in size, the whole result being 4096 bytes). We're using here
- * dma_addr_t for corectness but the compilation of this driver is
- * disabled for HIGHMEM64G=y, where sizeof(dma_addr_t) != 4 */
+ * dma_addr_t for correctness but the compilation of this driver is
+ * disabled for HIGHMEM64G=y, where sizeof(dma_addr_t) != 4
+ */
static int ptable_alloc(void) {
dma_addr_t *pt;
int i;
diff --git a/drivers/media/video/meye.h b/drivers/media/video/meye.h
index 9ac39190882f..2a2f79ed41ab 100644
--- a/drivers/media/video/meye.h
+++ b/drivers/media/video/meye.h
@@ -31,7 +31,7 @@
#define _MEYE_PRIV_H_
#define MEYE_DRIVER_MAJORVERSION 1
-#define MEYE_DRIVER_MINORVERSION 8
+#define MEYE_DRIVER_MINORVERSION 9
#include <linux/config.h>
#include <linux/types.h>