Re: [PATCH 1/1] of/overlay: of overlay callbacks

From: atull
Date: Thu Feb 18 2016 - 10:12:43 EST


On Thu, 18 Feb 2016, Moritz Fischer wrote:

> Hi Alan,
>
> a couple of nits below.
>
> On Wed, Feb 17, 2016 at 9:41 AM, Alan Tull <atull@xxxxxxxxxxxxxxxxxxxxx> wrote:
>
> >
> > +/*
> > + * Send overlay callbacks to handlers that match. This call is blocking. In
> Can we make this 'Invoke' instead of send?
>
> > @@ -370,6 +448,13 @@ int of_overlay_create(struct device_node *tree)
> > goto err_free_idr;
> > }
> >
> > + err = send_overlay_callbacks(ov, OF_OVERLAY_PRE_APPLY);
>
> Again ... maybe invoke ;-)

Hi Moritz,

Yes, that's better. I'll make the sends to be invokes.

>
> > diff --git a/include/linux/of.h b/include/linux/of.h
> > index dc6e396..def9481 100644
> > --- a/include/linux/of.h
> > +++ b/include/linux/of.h
> > @@ -101,9 +101,33 @@ static inline int of_node_is_attached(struct device_node *node)
> > return node && node->kobj.state_in_sysfs;
> > }
> >
> > +/* Callback types */
> > +#define OF_OVERLAY_PRE_APPLY (0)
> > +#define OF_OVERLAY_POST_APPLY (1)
> > +#define OF_OVERLAY_PRE_REMOVE (2)
> > +#define OF_OVERLAY_POST_REMOVE (3)
>
> Can we make this an enum?

Yes. And I can move it from of.h to overlay.c.

Thanks for the nits!

Alan


>
> Cheers,
>
> Moritz
>