Message ID | 20170125062657.19270-7-daniel.vetter@ffwll.ch (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Hi Daniel, 2017-01-25 Daniel Vetter <daniel.vetter@ffwll.ch>: > There was a bit of mix-up between initialization and registering. > > Signed-off-by: Daniel Vetter <daniel.vetter@intel.com> > --- > drivers/gpu/drm/drm_connector.c | 9 ++++----- > 1 file changed, 4 insertions(+), 5 deletions(-) > > diff --git a/drivers/gpu/drm/drm_connector.c b/drivers/gpu/drm/drm_connector.c > index dd720d4cb4f7..c75ab242f907 100644 > --- a/drivers/gpu/drm/drm_connector.c > +++ b/drivers/gpu/drm/drm_connector.c > @@ -40,11 +40,10 @@ > * > * KMS driver must create, initialize, register and attach at a &struct > * drm_connector for each such sink. The instance is created as other KMS > - * objects and initialized by setting the following fields. > - * > - * The connector is then registered with a call to drm_connector_init() with a > - * pointer to the connector functions and a connector type, and exposed through > - * sysfs with a call to drm_connector_register(). > + * objects and initialized by setting the following fields. The connector is > + * initialized with a call to drm_connector_init() with a pointer to the > + * connector functions and a connector type, and then exposed to userspace with &drm_connector_funcs Other than that: Reviewed-by: Gustavo Padovan <gustavo.padovan@collabora.com>
On Wed, Jan 25, 2017 at 10:57:17AM -0200, Gustavo Padovan wrote: > Hi Daniel, > > 2017-01-25 Daniel Vetter <daniel.vetter@ffwll.ch>: > > > There was a bit of mix-up between initialization and registering. > > > > Signed-off-by: Daniel Vetter <daniel.vetter@intel.com> > > --- > > drivers/gpu/drm/drm_connector.c | 9 ++++----- > > 1 file changed, 4 insertions(+), 5 deletions(-) > > > > diff --git a/drivers/gpu/drm/drm_connector.c b/drivers/gpu/drm/drm_connector.c > > index dd720d4cb4f7..c75ab242f907 100644 > > --- a/drivers/gpu/drm/drm_connector.c > > +++ b/drivers/gpu/drm/drm_connector.c > > @@ -40,11 +40,10 @@ > > * > > * KMS driver must create, initialize, register and attach at a &struct > > * drm_connector for each such sink. The instance is created as other KMS > > - * objects and initialized by setting the following fields. > > - * > > - * The connector is then registered with a call to drm_connector_init() with a > > - * pointer to the connector functions and a connector type, and exposed through > > - * sysfs with a call to drm_connector_register(). > > + * objects and initialized by setting the following fields. The connector is > > + * initialized with a call to drm_connector_init() with a pointer to the > > + * connector functions and a connector type, and then exposed to userspace with > > &drm_connector_funcs I'm not really clear what you want me to do here ... -Daniel > > Other than that: > > Reviewed-by: Gustavo Padovan <gustavo.padovan@collabora.com>
2017-01-25 Daniel Vetter <daniel@ffwll.ch>: > On Wed, Jan 25, 2017 at 10:57:17AM -0200, Gustavo Padovan wrote: > > Hi Daniel, > > > > 2017-01-25 Daniel Vetter <daniel.vetter@ffwll.ch>: > > > > > There was a bit of mix-up between initialization and registering. > > > > > > Signed-off-by: Daniel Vetter <daniel.vetter@intel.com> > > > --- > > > drivers/gpu/drm/drm_connector.c | 9 ++++----- > > > 1 file changed, 4 insertions(+), 5 deletions(-) > > > > > > diff --git a/drivers/gpu/drm/drm_connector.c b/drivers/gpu/drm/drm_connector.c > > > index dd720d4cb4f7..c75ab242f907 100644 > > > --- a/drivers/gpu/drm/drm_connector.c > > > +++ b/drivers/gpu/drm/drm_connector.c > > > @@ -40,11 +40,10 @@ > > > * > > > * KMS driver must create, initialize, register and attach at a &struct > > > * drm_connector for each such sink. The instance is created as other KMS > > > - * objects and initialized by setting the following fields. > > > - * > > > - * The connector is then registered with a call to drm_connector_init() with a > > > - * pointer to the connector functions and a connector type, and exposed through > > > - * sysfs with a call to drm_connector_register(). > > > + * objects and initialized by setting the following fields. The connector is > > > + * initialized with a call to drm_connector_init() with a pointer to the > > > + * connector functions and a connector type, and then exposed to userspace with > > > > &drm_connector_funcs > > I'm not really clear what you want me to do here ... You said "a pointer to the connector functions" thus &drm_connector_funcs. Sorry for not being clear enough, I should have justified what I wrote. > -Daniel > > > > > Other than that: > > > > Reviewed-by: Gustavo Padovan <gustavo.padovan@collabora.com> > > -- > Daniel Vetter > Software Engineer, Intel Corporation > http://blog.ffwll.ch
diff --git a/drivers/gpu/drm/drm_connector.c b/drivers/gpu/drm/drm_connector.c index dd720d4cb4f7..c75ab242f907 100644 --- a/drivers/gpu/drm/drm_connector.c +++ b/drivers/gpu/drm/drm_connector.c @@ -40,11 +40,10 @@ * * KMS driver must create, initialize, register and attach at a &struct * drm_connector for each such sink. The instance is created as other KMS - * objects and initialized by setting the following fields. - * - * The connector is then registered with a call to drm_connector_init() with a - * pointer to the connector functions and a connector type, and exposed through - * sysfs with a call to drm_connector_register(). + * objects and initialized by setting the following fields. The connector is + * initialized with a call to drm_connector_init() with a pointer to the + * connector functions and a connector type, and then exposed to userspace with + * a call to drm_connector_register(). * * Connectors must be attached to an encoder to be used. For devices that map * connectors to encoders 1:1, the connector should be attached at
There was a bit of mix-up between initialization and registering. Signed-off-by: Daniel Vetter <daniel.vetter@intel.com> --- drivers/gpu/drm/drm_connector.c | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-)