lkml.org 
[lkml]   [2018]   [Jun]   [18]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [PATCH 1/3] hwrng: msm - Move hwrng to a table
On 18-06-18, 08:58, Stephen Boyd wrote:
> Quoting Vinod Koul (2018-06-18 07:12:57)
> > @@ -127,6 +125,13 @@ static void msm_rng_cleanup(struct hwrng *hwrng)
> > msm_rng_enable(hwrng, 0);
> > }
> >
> > +static struct hwrng msm_rng = {
> > + .name = KBUILD_MODNAME,
> > + .init = msm_rng_init,
> > + .cleanup = msm_rng_cleanup,
> > + .read = msm_rng_read,
> > +};
> > +
> > static int msm_rng_probe(struct platform_device *pdev)
> > {
> > struct resource *res;
> > @@ -148,12 +153,10 @@ static int msm_rng_probe(struct platform_device *pdev)
> > if (IS_ERR(rng->clk))
> > return PTR_ERR(rng->clk);
> >
> > - rng->hwrng.name = KBUILD_MODNAME,
> > - rng->hwrng.init = msm_rng_init,
> > - rng->hwrng.cleanup = msm_rng_cleanup,
>
> Wouldn't it be a lot easier to skip assigning the init and cleanup
> functions on v2 devices with an if statement? It would be smaller size
> wise too because then we don't have two structs for v1 and v2 hwrngs.
> Plus the patch would be smaller overall because we would do everything
> else pretty much the same besides the if condition in probe.

Yes it would be an alternate approach and would involve lesser code
change.

My personal preference is table based init rather open coding and it
makes adding future revs easier, but said that I can change this...

--
~Vinod

\
 
 \ /
  Last update: 2018-06-18 18:55    [W:0.085 / U:0.680 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site