d-By: Dan Carpenter
Signed-off-by: Wei Yongjun
diff --git a/drivers/staging/rtl8188eu/os_dep/usb_intf.c
b/drivers/staging/rtl8188eu/os_dep/usb_intf.c
index b2bc09e..68e1e6b 100644
--- a/drivers/staging/rtl8188eu/os_dep/usb_intf.c
+++ b/drivers/staging/rtl8188eu/os_dep/usb_intf.c
@@ -
From: Wei Yongjun
convert list_for_each() to list_for_each_entry() where
applicable.
Signed-off-by: Wei Yongjun
---
drivers/staging/ks7010/ks_hostif.c | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/drivers/staging/ks7010/ks_hostif.c
b/drivers/staging/ks7010
From: Wei Yongjun
Remove duplicated include.
Signed-off-by: Wei Yongjun
---
drivers/staging/i4l/pcbit/capi.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/drivers/staging/i4l/pcbit/capi.c b/drivers/staging/i4l/pcbit/capi.c
index 91f2994..a6c4e00 100644
--- a/drivers/staging/i4l/pcbit
From: Wei Yongjun
Remove including that don't need it.
Signed-off-by: Wei Yongjun
---
drivers/staging/ks7010/ks_wlan.h | 1 -
1 file changed, 1 deletion(-)
diff --git a/drivers/staging/ks7010/ks_wlan.h b/drivers/staging/ks7010/ks_wlan.h
index 5851714..6981170 100644
--- a/drivers/st
From: Wei Yongjun
Remove duplicated include.
Signed-off-by: Wei Yongjun
---
drivers/staging/i4l/pcbit/drv.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/drivers/staging/i4l/pcbit/drv.c b/drivers/staging/i4l/pcbit/drv.c
index 87b8522..89b0b5b 100644
--- a/drivers/staging/i4l/pcbit/drv.c
From: Wei Yongjun
Use setup_timer function instead of initializing timer with the function
and data fields
Signed-off-by: Wei Yongjun
---
drivers/staging/ks7010/ks_wlan_net.c | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/drivers/staging/ks7010/ks_wlan_net.c
b
Hi Alexander,
On 10/18/2016 11:30 PM, Alexander Alemayhu wrote:
> On Tue, Oct 18, 2016 at 02:37:10PM +0000, Wei Yongjun wrote:
>> From: Wei Yongjun
>>
>> Remove duplicated include.
>>
> How did you discover that? Just curious if you used any tooling.
>
I found
From: Wei Yongjun
Fix to return a negative error code from the es2_arpc_in_enable() error
handling case instead of 0, as done elsewhere in this function.
Fixes: 9d9d3777a9db ("greybus: es2: Add a new bulk in endpoint for
APBridgeA RPC")
Signed-off-by: Wei Yongjun
---
drivers/stagi
From: Wei Yongjun
In case of error, the function i915_gem_object_create() returns
ERR_PTR() not NULL. The NULL test in the return value check should
be replaced with IS_ERR().
Signed-off-by: Wei Yongjun
---
drivers/gpu/drm/i915/gvt/cmd_parser.c | 8
1 file changed, 4 insertions(+), 4
Fix to return error code -ENOMEM from the vmalloc() error handling
case instead of 0, as done elsewhere in this function.
Fixes: aec9e12953e7 ("drm/mgag200: Fix error handling paths in fbdev driver")
Signed-off-by: Wei Yongjun
---
drivers/gpu/drm/mgag200/mgag200_fb.c | 4 +++-
1 file
From: Wei Yongjun
sizeof() when applied to a pointer typed expression gives the
size of the pointer, not that of the pointed data.
Fixes: fe158a17c1e0 ("ARM: orion: simplify orion_ge00_switch_init")
Signed-off-by: Wei Yongjun
---
arch/arm/plat-orion/common.c | 2 +-
1 file
From: Wei Yongjun
sizeof() when applied to a pointer typed expression gives the
size of the pointer, not that of the pointed data.
Fixes: fe158a17c1e0 ("ARM: orion: simplify orion_ge00_switch_init")
Signed-off-by: Wei Yongjun
---
v1 -> v2: fix file module name in subject
---
From: Wei Yongjun
Fix the retrn value check which testing the wrong variable
in at91_ebi_dev_disable().
Signed-off-by: Wei Yongjun
---
drivers/memory/atmel-ebi.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/memory/atmel-ebi.c b/drivers/memory/atmel-ebi.c
index
From: Wei Yongjun
Use the builtin_platform_driver() macro to make the code simpler.
Signed-off-by: Wei Yongjun
---
drivers/memory/atmel-sdramc.c | 6 +-
1 file changed, 1 insertion(+), 5 deletions(-)
diff --git a/drivers/memory/atmel-sdramc.c b/drivers/memory/atmel-sdramc.c
index 12080b0
From: Wei Yongjun
Fixes the following sparse warning:
drivers/gpu/drm/i915/intel_dp.c:1527:5: warning:
symbol 'intel_dp_compute_bpp' was not declared. Should it be static?
Signed-off-by: Wei Yongjun
---
drivers/gpu/drm/i915/intel_dp.c | 4 ++--
1 file changed, 2 insertions(+), 2
From: Wei Yongjun
Fixes the following sparse warnings:
sound/soc/codecs/rt5663.c:1367:14: warning: duplicate const
sound/soc/codecs/rt5663.c:1577:5: warning:
symbol 'rt5663_button_detect' was not declared. Should it be static?
sound/soc/codecs/rt5663.c:2857:24: warnin
From: Wei Yongjun
Fix the missing clk_disable_unprepare() before return
from uni_player_start() in the error handling case.
Signed-off-by: Wei Yongjun
---
sound/soc/sti/uniperif_player.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/sound/soc/sti/uniperif_player.c b
From: Wei Yongjun
image->lock is unlocked in some error handling path without take the
lock, so remove those unexpected unlock.
Fixes: 658bcdae9c67 ("vme: Adding Fake VME driver")
Signed-off-by: Wei Yongjun
---
drivers/vme/bridges/vme_fake.c | 3 ---
1 file changed, 3 deletions(-
From: Wei Yongjun
Fix the retrn value check which testing the wrong variable
in dsi_bind().
Signed-off-by: Wei Yongjun
---
drivers/gpu/drm/omapdrm/dss/dsi.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/omapdrm/dss/dsi.c
b/drivers/gpu/drm/omapdrm/dss
Fixes the following sparse warning:
drivers/irqchip/irq-jcore-aic.c:47:12: warning:
symbol 'aic_irq_of_init' was not declared. Should it be static?
Signed-off-by: Wei Yongjun
---
drivers/irqchip/irq-jcore-aic.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git
From: Wei Yongjun
Fixes the following sparse warning:
drivers/gpu/drm/i915/intel_hotplug.c:480:6: warning:
symbol 'i915_hpd_poll_init_work' was not declared. Should it be static?
Also move the '{' to new line.
Signed-off-by: Wei Yongjun
---
drivers/gpu/drm/i915/intel_
From: Wei Yongjun
Make sure i2c_device_id tables are NULL terminated.
Signed-off-by: Wei Yongjun
---
sound/soc/codecs/max98371.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/sound/soc/codecs/max98371.c b/sound/soc/codecs/max98371.c
index 3053879..781be9ba 100644
--- a/sound/soc/codecs
From: Wei Yongjun
Fixes the following sparse warnings:
drivers/staging/comedi/drivers/dt2811.c:99:20: warning:
symbol 'dt2811_clk_dividers' was not declared. Should it be static?
drivers/staging/comedi/drivers/dt2811.c:103:20: warning:
symbol 'dt2811_clk_multipliers' was
Remove duplicated include.
Signed-off-by: Wei Yongjun
---
arch/arm/mach-pxa/corgi.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/arch/arm/mach-pxa/corgi.c b/arch/arm/mach-pxa/corgi.c
index 10bfdb1..183cd34 100644
--- a/arch/arm/mach-pxa/corgi.c
+++ b/arch/arm/mach-pxa/corgi.c
@@ -35,7
Remove duplicated include.
Signed-off-by: Wei Yongjun
---
arch/arm/mach-pxa/spitz.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/arch/arm/mach-pxa/spitz.c b/arch/arm/mach-pxa/spitz.c
index 2c150bf..67d66c7 100644
--- a/arch/arm/mach-pxa/spitz.c
+++ b/arch/arm/mach-pxa/spitz.c
@@ -31,7
From: Wei Yongjun
Fixes the following sparse warning:
fs/f2fs/data.c:969:12: warning:
symbol 'f2fs_grab_bio' was not declared. Should it be static?
Signed-off-by: Wei Yongjun
---
fs/f2fs/data.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/fs/f2fs/data.c
Add the missing clk_disable_unprepare() before return
from samsung_i2s_probe() in the error handling case.
Signed-off-by: Wei Yongjun
---
sound/soc/samsung/i2s.c | 8 ++--
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/sound/soc/samsung/i2s.c b/sound/soc/samsung/i2s.c
index
Hi Robert,
On 08/24/2016 12:24 AM, Robert Jarzmik wrote:
> Wei Yongjun writes:
>
>> Remove duplicated include.
> How so duplicated ? Can you elaborate please ?
>
> Moreover, how do you do think symbol_get() can stay in spitz.c without having
> this include ?
file linux
Fix to return error code -ENODEV from the error handling
case instead of 0, as done elsewhere in this function.
Fixes: 87b2bdf02278 ("ASoC: Intel: Skylake: Initialize NHLT table")
Signed-off-by: Wei Yongjun
---
sound/soc/intel/skylake/skl.c | 4 +++-
1 file changed, 3 insertions(+),
Commit-ID: db3c6bf811581c626471a6aecdf0024575b707d7
Gitweb: http://git.kernel.org/tip/db3c6bf811581c626471a6aecdf0024575b707d7
Author: Wei Yongjun
AuthorDate: Wed, 13 Mar 2013 12:24:42 +0800
Committer: Arnaldo Carvalho de Melo
CommitDate: Fri, 15 Mar 2013 13:06:08 -0300
perf report
Commit-ID: 3482e664dc7f44e0ffb1fcf1de7af74977748f31
Gitweb: http://git.kernel.org/tip/3482e664dc7f44e0ffb1fcf1de7af74977748f31
Author: Wei Yongjun
AuthorDate: Wed, 24 Apr 2013 10:46:24 +0800
Committer: Ingo Molnar
CommitDate: Wed, 24 Apr 2013 08:44:47 +0200
x86/olpc/xo1/sci: Don
Commit-ID: c481420248c6730246d2a1b1773d5d7007ae0835
Gitweb: http://git.kernel.org/tip/c481420248c6730246d2a1b1773d5d7007ae0835
Author: Wei Yongjun
AuthorDate: Fri, 12 Apr 2013 11:05:54 +0800
Committer: Ingo Molnar
CommitDate: Fri, 12 Apr 2013 06:33:56 +0200
perf: Fix error return code
Commit-ID: b8129a1f6aaaca02d92186acf19ceb545b4b489a
Gitweb: http://git.kernel.org/tip/b8129a1f6aaaca02d92186acf19ceb545b4b489a
Author: Wei Yongjun
AuthorDate: Sun, 25 Sep 2016 15:36:39 +
Committer: Thomas Gleixner
CommitDate: Sun, 25 Sep 2016 16:46:52 -0400
genirq: Make function
Commit-ID: 0e54705b0e01dcaf3eb2a496bb66d5f05012056b
Gitweb: https://git.kernel.org/tip/0e54705b0e01dcaf3eb2a496bb66d5f05012056b
Author: Wei Yongjun
AuthorDate: Tue, 14 Nov 2017 06:57:28 +
Committer: Thomas Gleixner
CommitDate: Tue, 14 Nov 2017 11:27:22 +0100
irqchip/exiu: Fix
Commit-ID: 0add16c13f49bda5455d9418d479d6c89f7ab272
Gitweb: https://git.kernel.org/tip/0add16c13f49bda5455d9418d479d6c89f7ab272
Author: Wei Yongjun
AuthorDate: Fri, 4 May 2018 07:59:57 +0200
Committer: Ingo Molnar
CommitDate: Mon, 14 May 2018 08:57:48 +0200
efi/libstub/tpm: Make
The following commit has been merged into the x86/core branch of tip:
Commit-ID: 2304d14db6595bea5292bece06c4c625b12d8f89
Gitweb:
https://git.kernel.org/tip/2304d14db6595bea5292bece06c4c625b12d8f89
Author:Wei Yongjun
AuthorDate:Wed, 24 Mar 2021 14:45:02
Committer
The following commit has been merged into the x86/sgx branch of tip:
Commit-ID: 523caed9efbb049339706b124185c9358c1b6477
Gitweb:
https://git.kernel.org/tip/523caed9efbb049339706b124185c9358c1b6477
Author:Wei Yongjun
AuthorDate:Mon, 12 Apr 2021 16:00:23
Committer
The following commit has been merged into the timers/core branch of tip:
Commit-ID: 2a65f7e2772613debd03fa2492e76a635aa04545
Gitweb:
https://git.kernel.org/tip/2a65f7e2772613debd03fa2492e76a635aa04545
Author:Wei Yongjun
AuthorDate:Mon, 08 Mar 2021 12:30:31
Committer
Commit-ID: 19259943f0954dcd1817f94776376bf51c6a46d5
Gitweb: http://git.kernel.org/tip/19259943f0954dcd1817f94776376bf51c6a46d5
Author: Wei Yongjun
AuthorDate: Sat, 7 Dec 2013 21:02:36 +0800
Committer: H. Peter Anvin
CommitDate: Tue, 14 Jan 2014 10:45:56 -0800
x86, kaslr: Remove unused
Commit-ID: 2384d1d832efc59447b27a283080551caf922086
Gitweb: http://git.kernel.org/tip/2384d1d832efc59447b27a283080551caf922086
Author: Wei Yongjun
AuthorDate: Tue, 19 Jul 2016 12:02:11 +
Committer: Thomas Gleixner
CommitDate: Tue, 19 Jul 2016 16:02:17 +0200
x86/ce4100: Remove
Commit-ID: f6329088b3d9898d6212c410d465d096cdcd3746
Gitweb: http://git.kernel.org/tip/f6329088b3d9898d6212c410d465d096cdcd3746
Author: Wei Yongjun
AuthorDate: Tue, 19 Jul 2016 12:02:20 +
Committer: Thomas Gleixner
CommitDate: Tue, 19 Jul 2016 16:02:31 +0200
x86/apic: Remove
Commit-ID: 885885f6b88d22f81e67ee6a61561e480b27d27a
Gitweb: http://git.kernel.org/tip/885885f6b88d22f81e67ee6a61561e480b27d27a
Author: Wei Yongjun
AuthorDate: Fri, 17 Jun 2016 17:19:40 +
Committer: Ingo Molnar
CommitDate: Thu, 7 Jul 2016 09:06:46 +0200
locking/static_keys: Fix non
The following commit has been merged into the core/rcu branch of tip:
Commit-ID: 2b722160f1a7929f38dfb648c7bbb45f96e65a5b
Gitweb:
https://git.kernel.org/tip/2b722160f1a7929f38dfb648c7bbb45f96e65a5b
Author:Wei Yongjun
AuthorDate:Mon, 06 Jul 2020 21:49:41 +08:00
Committer
The following commit has been merged into the core/rcu branch of tip:
Commit-ID: 9a52a574676f8d4aa55f69319231ce6c343b00bb
Gitweb:
https://git.kernel.org/tip/9a52a574676f8d4aa55f69319231ce6c343b00bb
Author:Wei Yongjun
AuthorDate:Thu, 02 Jul 2020 09:56:50 -07:00
Committer
The following commit has been merged into the core/rcu branch of tip:
Commit-ID: d49bed9abc3454bd123cbe974ecbeae119701b92
Gitweb:
https://git.kernel.org/tip/d49bed9abc3454bd123cbe974ecbeae119701b92
Author:Wei Yongjun
AuthorDate:Fri, 03 Jul 2020 13:05:27 +08:00
Committer
The following commit has been merged into the locking/kcsan branch of tip:
Commit-ID: 52785b6ae8eded7ac99d65c92d989b702e5b4376
Gitweb:
https://git.kernel.org/tip/52785b6ae8eded7ac99d65c92d989b702e5b4376
Author:Wei Yongjun
AuthorDate:Fri, 17 Apr 2020 02:58:37
Committer
Commit-ID: 5f0744e50db1628d6de770b92278445b3de2779f
Gitweb: http://git.kernel.org/tip/5f0744e50db1628d6de770b92278445b3de2779f
Author: Wei Yongjun
AuthorDate: Fri, 19 May 2017 11:39:12 +0200
Committer: Thomas Gleixner
CommitDate: Sun, 21 May 2017 21:55:12 +0200
RAS: Make local
Commit-ID: 216646e4d82e847791f0ba66c439dedd36cb119f
Gitweb: http://git.kernel.org/tip/216646e4d82e847791f0ba66c439dedd36cb119f
Author: Wei Yongjun
AuthorDate: Thu, 27 Apr 2017 15:21:13 +
Committer: Thomas Gleixner
CommitDate: Sun, 30 Apr 2017 11:21:16 +0200
irqchip/mbigen: Fix
Commit-ID: 10714dd37aa7ebb165677b9a793448950ff366ad
Gitweb: http://git.kernel.org/tip/10714dd37aa7ebb165677b9a793448950ff366ad
Author: Wei Yongjun
AuthorDate: Tue, 18 Oct 2016 15:33:12 +0100
Committer: Ingo Molnar
CommitDate: Tue, 18 Oct 2016 17:11:16 +0200
efi: Remove unused include
Commit-ID: 137baabe351e0554d06c6d5c84059fe343e2791e
Gitweb: http://git.kernel.org/tip/137baabe351e0554d06c6d5c84059fe343e2791e
Author: Wei Yongjun
AuthorDate: Mon, 17 Oct 2016 15:47:39 +
Committer: Thomas Gleixner
CommitDate: Wed, 19 Oct 2016 17:28:48 +0200
mm/numa: Remove
701 - 750 of 750 matches
Mail list logo