allmodconfig
i386 randconfig-c001-20210723
powerpc pasemi_defconfig
mips pic32mzda_defconfig
mips pistachio_defconfig
powerpc ppc44x_defconfig
sh
On Fri, Jul 23, 2021 at 10:57:56AM +0200, Daniel Vetter wrote:
> On Fri, Jul 23, 2021 at 11:12:49AM +0800, lichenyang wrote:
> > From: Chenyang Li
> >
> > This patch adds an initial DRM driver for the Loongson LS7A1000
> > bridge chip(LS7A). The LS7A bridge chip contains two display
> > controlle
allmodconfig
i386 randconfig-c001-20210723
i386 randconfig-c001-20210722
powerpc tqm8541_defconfig
powerpc xes_mpc85xx_defconfig
mipsmaltaup_defconfig
powerpcsam440ep_defconfig
arm
This commit fixes the following checkpatch.pl CHECK:
CHECK: Blank lines aren't necessary after an open brace '{'
1143: FILE: drivers/staging/rtl8188eu/core/rtw_ap.c:1143:
+{
+
Signed-off-by: Benjamin Philip
---
drivers/staging/rtl8188eu/core/rtw_ap.c | 1 -
1 file changed, 1 deletion(-)
diff -
This commit fixes the following checkpatch.pl CHECK:
CHECK: Blank lines aren't necessary before a close brace '}'
457: FILE: drivers/staging/rtl8188eu/core/rtw_ap.c:457:
+
+ }
Signed-off-by: Benjamin Philip
---
drivers/staging/rtl8188eu/core/rtw_ap.c | 1 -
1 file changed, 1 deletion(-)
This commit fixes the following checkpatch.pl CHECK:
CHECK: Blank lines aren't necessary before a close brace '}'
385: FILE: drivers/staging/rtl8188eu/core/rtw_ap.c:385:
+
+ }
Signed-off-by: Benjamin Philip
---
drivers/staging/rtl8188eu/core/rtw_ap.c | 1 -
1 file changed, 1 deletion(-)
The following few patches remove some blank lines that before or after a brace.
To test my changes, I have checked if it compiles (which it does). I also have
checked the patch with checkpatch.pl, which does not pass any warnings of any
sort.
Changes in v2:
* Tested by building (no changes code)
On Fri, Jul 23, 2021 at 11:12:49AM +0800, lichenyang wrote:
> From: Chenyang Li
>
> This patch adds an initial DRM driver for the Loongson LS7A1000
> bridge chip(LS7A). The LS7A bridge chip contains two display
> controllers, support dual display output. The maximum support for
> each channel dis
On Fri, Jul 23, 2021 at 11:12:49AM +0800, lichenyang wrote:
> +static int loongson_drm_load(struct drm_device *dev)
> +{
> + struct loongson_device *ldev;
> + int ret;
> +
> + ldev = devm_kzalloc(dev->dev, sizeof(*ldev), GFP_KERNEL);
> + if (!ldev)
> + return -ENOMEM;
>