Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

i2c/drivers/ov02q10: use HZ macros

HZ unit conversion macros are available in units.h, use them and remove
the duplicate definition.

Link: https://lkml.kernel.org/r/20210816114732.1834145-9-daniel.lezcano@linaro.org
Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Cc: Chanwoo Choi <cw00.choi@samsung.com>
Cc: Christian Eggers <ceggers@arri.de>
Cc: Guenter Roeck <linux@roeck-us.net>
Cc: Jonathan Cameron <jic23@kernel.org>
Cc: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Cc: Kyungmin Park <kyungmin.park@samsung.com>
Cc: Lars-Peter Clausen <lars@metafoo.de>
Cc: Lukasz Luba <lukasz.luba@arm.com>
Cc: Maxime Coquelin <mcoquelin.stm32@gmail.com>
Cc: Miquel Raynal <miquel.raynal@bootlin.com>
Cc: MyungJoo Ham <myungjoo.ham@samsung.com>
Cc: Peter Meerwald <pmeerw@pmeerw.net>
Cc: "Rafael J. Wysocki" <rafael@kernel.org>
Cc: Zhang Rui <rui.zhang@intel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by

Daniel Lezcano and committed by
Linus Torvalds
09704a94 87000e7f

+1 -1
+1 -1
drivers/media/i2c/ov02a10.c
··· 9 9 #include <linux/module.h> 10 10 #include <linux/pm_runtime.h> 11 11 #include <linux/regulator/consumer.h> 12 + #include <linux/units.h> 12 13 #include <media/media-entity.h> 13 14 #include <media/v4l2-async.h> 14 15 #include <media/v4l2-ctrls.h> ··· 65 64 /* Test pattern control */ 66 65 #define OV02A10_REG_TEST_PATTERN 0xb6 67 66 68 - #define HZ_PER_MHZ 1000000L 69 67 #define OV02A10_LINK_FREQ_390MHZ (390 * HZ_PER_MHZ) 70 68 #define OV02A10_ECLK_FREQ (24 * HZ_PER_MHZ) 71 69