Re: [PATCH] media: ov2740: add NVMEM interface to read customized OTP data

From: Srinivas Kandagatla
Date: Mon Jun 15 2020 - 05:46:27 EST




On 15/06/2020 10:29, Sakari Ailus wrote:
+ ret = ov2740_register_nvmem(client);
+ if (ret)
+ dev_err(&client->dev, "register nvmem failed, ret %d\n", ret);
+
/*
* Device is already turned on by i2c-core with ACPI domain PM.
* Enable runtime PM and turn off the device.
Could you add #ifdefs for CONFIG_NVMEM so this compiles when it's disabled?

NVMEM already has dummy functions. IMO its better to report an error to user as the current code does. This will atleast alert the users of existing nvmem provider that has been disabled!

However with ifdef users have to really look into code to be able to understand that there is nvmem provider as part of this driver.


Unless you have tight memory restrictions I see no great advantage of adding #ifdefs

--srini
It's bool so a simple #ifdef will do. I think ov2740_register_nvmem() could
have a dummy implementation so this wouldn't litter the probe function.

Thanks.