Re: [PATCH 4/7] soundwire/regmap: use _no_pm functions in regmap_read/write
From: Pierre-Louis Bossart
Date: Sat Dec 05 2020 - 11:00:55 EST
-static int sdw_write_no_pm(struct sdw_slave *slave, u32 addr, u8 value)
+int sdw_write_no_pm(struct sdw_slave *slave, u32 addr, u8 value)
{
return sdw_nwrite_no_pm(slave, addr, 1, &value);
}
+EXPORT_SYMBOL(sdw_write_no_pm);
Why not export this is patch 1..?
yes, good point. I guess Bard and I were debugging in parallel and
missed this. thanks for pointing it out.