Commit 3bab727b authored by Matthias Brugger's avatar Matthias Brugger

soc: mediatek: mtk-svs: clean up platform probing

We only ever call the SoC specific probe function from
svs_platform_probe. No need to carry that function in a global
datastructure around.
Reviewed-by: default avatarAngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
Signed-off-by: default avatarRoger Lu <roger.lu@mediatek.com>
Link: https://lore.kernel.org/r/20230111074528.29354-9-roger.lu@mediatek.comSigned-off-by: default avatarMatthias Brugger <matthias.bgg@gmail.com>
parent 8bf30508
...@@ -321,7 +321,6 @@ static const u32 svs_regs_v2[] = { ...@@ -321,7 +321,6 @@ static const u32 svs_regs_v2[] = {
* @banks: svs banks that svs platform supports * @banks: svs banks that svs platform supports
* @rst: svs platform reset control * @rst: svs platform reset control
* @efuse_parsing: svs platform efuse parsing function pointer * @efuse_parsing: svs platform efuse parsing function pointer
* @probe: svs platform probe function pointer
* @efuse_max: total number of svs efuse * @efuse_max: total number of svs efuse
* @tefuse_max: total number of thermal efuse * @tefuse_max: total number of thermal efuse
* @regs: svs platform registers map * @regs: svs platform registers map
...@@ -338,7 +337,6 @@ struct svs_platform { ...@@ -338,7 +337,6 @@ struct svs_platform {
struct svs_bank *banks; struct svs_bank *banks;
struct reset_control *rst; struct reset_control *rst;
bool (*efuse_parsing)(struct svs_platform *svsp); bool (*efuse_parsing)(struct svs_platform *svsp);
int (*probe)(struct svs_platform *svsp);
size_t efuse_max; size_t efuse_max;
size_t tefuse_max; size_t tefuse_max;
const u32 *regs; const u32 *regs;
...@@ -2375,11 +2373,10 @@ static struct svs_platform *svs_platform_probe(struct platform_device *pdev) ...@@ -2375,11 +2373,10 @@ static struct svs_platform *svs_platform_probe(struct platform_device *pdev)
svsp->name = svsp_data->name; svsp->name = svsp_data->name;
svsp->banks = svsp_data->banks; svsp->banks = svsp_data->banks;
svsp->efuse_parsing = svsp_data->efuse_parsing; svsp->efuse_parsing = svsp_data->efuse_parsing;
svsp->probe = svsp_data->probe;
svsp->regs = svsp_data->regs; svsp->regs = svsp_data->regs;
svsp->bank_max = svsp_data->bank_max; svsp->bank_max = svsp_data->bank_max;
ret = svsp->probe(svsp); ret = svsp_data->probe(svsp);
if (ret) if (ret)
return ERR_PTR(ret); return ERR_PTR(ret);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment