[PATCH] drm: amd: Fix trailing semicolons

2018-01-19 Thread Luis de Bethencourt
The trailing semicolon is an empty statement that does no operation. Removing the two instances of them since they don't do anything. Signed-off-by: Luis de Bethencourt --- Hi, After fixing the same thing in drivers/staging/rtl8723bs/, Joe Perches suggested I fix it treewide [0]. Best re

[PATCH] drm/msm/mdp5: Fix trailing semicolon

2018-01-19 Thread Luis de Bethencourt
The trailing semicolon is an empty statement that does no operation. Removing it since it doesn't do anything. Signed-off-by: Luis de Bethencourt --- Hi, After fixing the same thing in drivers/staging/rtl8723bs/, Joe Perches suggested I fix it treewide [0]. Best regards Luis [0]

[PATCH] drm/nouveau/mmu: Fix trailing semicolon

2018-01-19 Thread Luis de Bethencourt
The trailing semicolon is an empty statement that does no operation. Removing it since it doesn't do anything. Signed-off-by: Luis de Bethencourt --- Hi, After fixing the same thing in drivers/staging/rtl8723bs/, Joe Perches suggested I fix it treewide [0]. Best regards Luis [0]

[PATCH] drm: Fix trailing semicolon

2018-01-18 Thread Luis de Bethencourt
The trailing semicolon is an empty statement that does no operation. Removing it since it doesn't do anything. Signed-off-by: Luis de Bethencourt --- Hi, After fixing the same thing in drivers/staging/rtl8723bs/, Joe Perches suggested I fix it treewide [0]. Best regards Luis [0]

[PATCH v3 1/7] lib: string: add functions to case-convert strings

2016-07-13 Thread Luis de Bethencourt
On 13/07/16 23:26, Markus Mayer wrote: > On 13 July 2016 at 10:19, Luis de Bethencourt > wrote: >> On 11/07/16 23:46, Markus Mayer wrote: >> >> Hi Markus, >> >> Amazing. I see this happening as well, but I know it shouldn't. >> >> The reason

[PATCH v3 1/7] lib: string: add functions to case-convert strings

2016-07-13 Thread Luis de Bethencourt
On 11/07/16 23:46, Markus Mayer wrote: > On 9 July 2016 at 08:30, Markus Mayer wrote: >> On 9 July 2016 at 05:04, Luis de Bethencourt >> wrote: >>> On 08/07/16 23:43, Markus Mayer wrote: >>>> Add a collection of generic functions to convert st

[PATCH v3 1/7] lib: string: add functions to case-convert strings

2016-07-09 Thread Luis de Bethencourt
On 08/07/16 23:43, Markus Mayer wrote: > Add a collection of generic functions to convert strings to lowercase > or uppercase. > > Changing the case of a string (with or without copying it first) seems > to be a recurring requirement in the kernel that is currently being > solved by several duplic

[RESEND] fence: add missing descriptions for fence

2016-04-11 Thread Luis de Bethencourt
On 11/04/16 21:09, Gustavo Padovan wrote: > Hi Luis, > > 2016-04-11 Luis de Bethencourt : > >> The members child_list and active_list were added to the fence struct >> without descriptions for the Documentation. Adding these. >> >> Fixes: b55b54b5db33 (&qu

[RESEND] fence: add missing descriptions for fence

2016-04-11 Thread Luis de Bethencourt
The members child_list and active_list were added to the fence struct without descriptions for the Documentation. Adding these. Fixes: b55b54b5db33 ("staging/android: remove struct sync_pt") Signed-off-by: Luis de Bethencourt Reviewed-by: Javier Martinez Canillas --- Hi, Just rese

[PATCH v2] fence: add missing descriptions for fence

2016-03-21 Thread Luis de Bethencourt
The members child_list and active_list were added to the fence struct without descriptions for the Documentation. Adding these. Fixes: b55b54b5db33 ("staging/android: remove struct sync_pt") Signed-off-by: Luis de Bethencourt Reviewed-by: Javier Martinez Canillas --- Hi, This seco

[PATCH] fence: add missing descriptions for fence

2016-03-20 Thread Luis de Bethencourt
On 19/03/16 23:55, Javier Martinez Canillas wrote: > Hello Luis, > > On Sat, Mar 19, 2016 at 4:50 PM, Luis de Bethencourt > wrote: >> Commit b55b54b5db33 ("staging/android: remove struct sync_pt") >> added the members child_list and active_list to the fence stru

[PATCH] fence: add missing descriptions for fence

2016-03-19 Thread Luis de Bethencourt
Commit b55b54b5db33 ("staging/android: remove struct sync_pt") added the members child_list and active_list to the fence struct, but didn't add descriptions for these. Adding the descriptions. Signed-off-by: Luis de Bethencourt --- Hi, Noticed this missing descriptions wh

[PATCH] drm: remove excess description

2016-03-19 Thread Luis de Bethencourt
Description of expected_size doesn't match any parameter of the function drm_atomic_replace_property_blob. Removing it. Signed-off-by: Luis de Bethencourt --- Hi, I noticed this while running make htmldocs. It gives the following warning: .//drivers/gpu/drm/drm_atomic.c:393: warning: E

[RESEND] drm: imx: imx-tve: Fix module autoload for OF platform driver

2015-11-30 Thread Luis de Bethencourt
On 30/11/15 21:28, Philipp Zabel wrote: > Hi Luis, > > thanks for the reminder. > No problem. I was worried I was bothering. > Am Montag, den 30.11.2015, 15:02 +0000 schrieb Luis de Bethencourt: >> This platform driver has a OF device ID table but the OF module >&g

[RESEND] drm/rockchip: Fix module autoload for OF platform driver

2015-11-12 Thread Luis de Bethencourt
From: Luis de Bethencourt This platform driver has a OF device ID table but the OF module alias information is not created so module autoloading won't work. Signed-off-by: Luis de Bethencourt --- Hi, This is a Resend of a patch from 20 Oct [0] I am adding Andrew Morton to the CC list a

[RESEND] drm: imx: imx-tve: Fix module autoload for OF platform driver

2015-11-12 Thread Luis de Bethencourt
From: Luis de Bethencourt This platform driver has a OF device ID table but the OF module alias information is not created so module autoloading won't work. Signed-off-by: Luis de Bethencourt --- Hi, This is a Resend of a patch from 20 Oct [0] I am adding Andrew Morton to the CC li

[RESEND PATCH] drm: omapdrm: tiler: Remove unneded module alias for tiler

2015-10-20 Thread Luis de Bethencourt
omap_dmm_tiler.c can't be compiled as a module and it is built unconditionally as part of omapdrm. Since it can't be used as a module, there is no need for it to have an unused MODULE_ALIAS(). Signed-off-by: Luis de Bethencourt --- Hi, This is a resend of a patch sent Septe

[RESEND PATCH 1/2] drm: atmel-hlcdc: Fix module autoload for OF platform driver

2015-10-20 Thread Luis de Bethencourt
From: Luis de Bethencourt This platform driver has a OF device ID table but the OF module alias information is not created so module autoloading won't work. Signed-off-by: Luis de Bethencourt Acked-by: Boris Brezillon --- drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_dc.c | 1 + 1 file chang

[RESEND PATCH 0/2] drm: Fix module autoload for OF platform drivers

2015-10-20 Thread Luis de Bethencourt
://lkml.org/lkml/2015/7/30/519 The first patch is Acked by Boris Brezillon. Thanks, Luis [0] https://lkml.org/lkml/2015/9/17/427 [1] https://lkml.org/lkml/2015/9/17/428 Luis de Bethencourt (2): drm: atmel-hlcdc: Fix module autoload for OF platform driver drm: imx: imx-tve: Fix module autoload

[PATCH 3/5] drm: omapdrm: tiler: Fix module autoload for OF platform driver

2015-09-24 Thread Luis de Bethencourt
On Thu, Sep 24, 2015 at 06:43:33PM +0300, Tomi Valkeinen wrote: > > On 24/09/15 18:36, Luis de Bethencourt wrote: > > > I am a bit confused. > > Yes, it's an interesting mess due to legacy reasons. Maybe we manage to > fix it some day... > > > So how th

[PATCH 3/5] drm: omapdrm: tiler: Fix module autoload for OF platform driver

2015-09-24 Thread Luis de Bethencourt
On Thu, Sep 24, 2015 at 01:41:56PM +0300, Tomi Valkeinen wrote: > > On 17/09/15 17:21, Luis de Bethencourt wrote: > > This platform driver has a OF device ID table but the OF module > > alias information is not created so module autoloading won't work. > > > >

[PATCH] drm: omapdrm: tiler: Remove unneded module alias for tiler

2015-09-24 Thread Luis de Bethencourt
omap_dmm_tiler.c can't be compiled as a module and it is built unconditionally as part of omapdrm. Since it can't be used as a module, there is no need for it to have an unused MODULE_ALIAS(). Signed-off-by: Luis de Bethencourt --- Hi, Submitting the removal of MODULE_ALIAS

[PATCH 4/5] drm/rockchip: Fix module autoload for OF platform driver

2015-09-17 Thread Luis de Bethencourt
This platform driver has a OF device ID table but the OF module alias information is not created so module autoloading won't work. Signed-off-by: Luis de Bethencourt --- drivers/gpu/drm/rockchip/rockchip_drm_vop.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/gpu/drm/roc

[PATCH 3/5] drm: omapdrm: tiler: Fix module autoload for OF platform driver

2015-09-17 Thread Luis de Bethencourt
This platform driver has a OF device ID table but the OF module alias information is not created so module autoloading won't work. Signed-off-by: Luis de Bethencourt --- drivers/gpu/drm/omapdrm/omap_dmm_tiler.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/gpu/drm/om

[PATCH 2/5] drm: imx: imx-tve: Fix module autoload for OF platform driver

2015-09-17 Thread Luis de Bethencourt
This platform driver has a OF device ID table but the OF module alias information is not created so module autoloading won't work. Signed-off-by: Luis de Bethencourt --- drivers/gpu/drm/imx/imx-tve.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/gpu/drm/imx/imx-tve.c b/driver

[PATCH 1/5] drm: atmel-hlcdc: Fix module autoload for OF platform driver

2015-09-17 Thread Luis de Bethencourt
This platform driver has a OF device ID table but the OF module alias information is not created so module autoloading won't work. Signed-off-by: Luis de Bethencourt --- drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_dc.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/gpu/drm/atmel-

[PATCH 0/5] drm: Fix module autoload for OF platform drivers

2015-09-17 Thread Luis de Bethencourt
These patches add the missing MODULE_DEVICE_TABLE() for OF to export the information so modules have the correct aliases built-in and autoloading works correctly. A longer explanation by Javier Canillas can be found here: https://lkml.org/lkml/2015/7/30/519 Thanks, Luis Luis de Bethencourt (5