search for: brodkin

Displaying 20 results from an estimated 20 matches for "brodkin".

2018 Apr 18
0
[PATCH] drm: Print unadorned pointers
On Wed, Apr 18, 2018 at 12:24:50PM +0300, Alexey Brodkin wrote: > After commit ad67b74 ("printk: hash addresses printed with %p") > pointers are being hashed when printed. However, this makes > debug output completely useless. Switch to %px in order to see the > unadorned kernel pointers. > > This was done with the following...
2020 Feb 19
0
[RESEND PATCH v2 5/9] arc: Constify ioreadX() iomem argument (as in generic implementation)
...is a pointer to const, on some not. Implementations of ioreadX() do not modify the memory under the address so they can be converted to a "const" version for const-safety and consistency among architectures. Signed-off-by: Krzysztof Kozlowski <krzk at kernel.org> Acked-by: Alexey Brodkin <abrodkin at synopsys.com> --- Changes since v1: 1. Add Alexey's ack. --- arch/arc/plat-axs10x/axs10x.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/arc/plat-axs10x/axs10x.c b/arch/arc/plat-axs10x/axs10x.c index 63ea5a606ecd..180c260a8221 100644 --- a/ar...
2017 Jul 25
2
[PATCH 4/8] drm: Nuke drm_atomic_helper_crtc_set_property
...la at linux.intel.com> Cc: Sean Paul <seanpaul at chromium.org> Cc: David Airlie <airlied at linux.ie> Cc: Ben Skeggs <bskeggs at redhat.com> Cc: Tomi Valkeinen <tomi.valkeinen at ti.com> Cc: Laurent Pinchart <laurent.pinchart+renesas at ideasonboard.com> Cc: Alexey Brodkin <abrodkin at synopsys.com> Cc: Shawn Guo <shawn.guo at linaro.org> Cc: Eric Engestrom <eric at engestrom.ch> Cc: Chris Wilson <chris at chris-wilson.co.uk> Cc: "Ville Syrjälä" <ville.syrjala at linux.intel.com> Cc: Rob Clark <robdclark at gmail.com> Cc:...
2017 Jul 25
5
[PATCH 5/8] drm: Nuke drm_atomic_helper_plane_set_property
...;yannick.fertre at st.com> Cc: Philippe Cornu <philippe.cornu at st.com> Cc: Jyri Sarha <jsarha at ti.com> Cc: "Ville Syrjälä" <ville.syrjala at linux.intel.com> Cc: Rongrong Zou <zourongrong at gmail.com> Cc: Shawn Guo <shawn.guo at linaro.org> Cc: Alexey Brodkin <abrodkin at synopsys.com> Cc: Eric Engestrom <eric at engestrom.ch> Cc: Chris Wilson <chris at chris-wilson.co.uk> Cc: Rob Clark <robdclark at gmail.com> Cc: Archit Taneja <architt at codeaurora.org> Cc: linux-arm-kernel at lists.infradead.org Cc: linux-samsung-soc at...
2017 Jul 25
8
[PATCH 7/8] drm: Nuke drm_atomic_helper_connector_dpms
...c: Marek Szyprowski <m.szyprowski at samsung.com> Cc: Jose Abreu <Jose.Abreu at synopsys.com> Cc: Romain Perier <romain.perier at collabora.com> Cc: Kieran Bingham <kieran.bingham+renesas at ideasonboard.com> Cc: Xinliang Liu <z.liuxinliang at hisilicon.com> Cc: Alexey Brodkin <abrodkin at synopsys.com> Cc: Alex Deucher <alexander.deucher at amd.com> Cc: Rongrong Zou <zourongrong at gmail.com> Cc: Rob Clark <robdclark at gmail.com> Cc: Hai Li <hali at codeaurora.org> Cc: "Noralf Tr?nnes" <noralf at tronnes.org> Cc: linux-arm-...
2017 Jul 25
8
[PATCH 7/8] drm: Nuke drm_atomic_helper_connector_dpms
...c: Marek Szyprowski <m.szyprowski at samsung.com> Cc: Jose Abreu <Jose.Abreu at synopsys.com> Cc: Romain Perier <romain.perier at collabora.com> Cc: Kieran Bingham <kieran.bingham+renesas at ideasonboard.com> Cc: Xinliang Liu <z.liuxinliang at hisilicon.com> Cc: Alexey Brodkin <abrodkin at synopsys.com> Cc: Alex Deucher <alexander.deucher at amd.com> Cc: Rongrong Zou <zourongrong at gmail.com> Cc: Rob Clark <robdclark at gmail.com> Cc: Hai Li <hali at codeaurora.org> Cc: "Noralf Tr?nnes" <noralf at tronnes.org> Cc: linux-arm-...
2017 Jul 25
8
[PATCH 7/8] drm: Nuke drm_atomic_helper_connector_dpms
...c: Marek Szyprowski <m.szyprowski at samsung.com> Cc: Jose Abreu <Jose.Abreu at synopsys.com> Cc: Romain Perier <romain.perier at collabora.com> Cc: Kieran Bingham <kieran.bingham+renesas at ideasonboard.com> Cc: Xinliang Liu <z.liuxinliang at hisilicon.com> Cc: Alexey Brodkin <abrodkin at synopsys.com> Cc: Alex Deucher <alexander.deucher at amd.com> Cc: Rongrong Zou <zourongrong at gmail.com> Cc: Rob Clark <robdclark at gmail.com> Cc: Hai Li <hali at codeaurora.org> Cc: "Noralf Tr?nnes" <noralf at tronnes.org> Cc: linux-arm-...
2020 Jan 08
17
[PATCH v2 0/9] iomap: Constify ioreadX() iomem argument
Hi, Changes since v1 ================ https://lore.kernel.org/lkml/1578415992-24054-1-git-send-email-krzk at kernel.org/ 1. Constify also ioreadX_rep() and mmio_insX(), 2. Squash lib+alpha+powerpc+parisc+sh into one patch for bisectability, 3. Add Geert's review, 4. Re-order patches so all optional driver changes are at the end. Description =========== The ioread8/16/32() and others have
2020 Feb 19
14
[RESEND PATCH v2 0/9] iomap: Constify ioreadX() iomem argument
Hi, Changes since v1 ================ https://lore.kernel.org/lkml/1578415992-24054-1-git-send-email-krzk at kernel.org/ 1. Constify also ioreadX_rep() and mmio_insX(), 2. Squash lib+alpha+powerpc+parisc+sh into one patch for bisectability, 3. Add acks and reviews, 4. Re-order patches so all optional driver changes are at the end. Description =========== The ioread8/16/32() and others have
2020 Feb 19
14
[RESEND PATCH v2 0/9] iomap: Constify ioreadX() iomem argument
Hi, Changes since v1 ================ https://lore.kernel.org/lkml/1578415992-24054-1-git-send-email-krzk at kernel.org/ 1. Constify also ioreadX_rep() and mmio_insX(), 2. Squash lib+alpha+powerpc+parisc+sh into one patch for bisectability, 3. Add acks and reviews, 4. Re-order patches so all optional driver changes are at the end. Description =========== The ioread8/16/32() and others have
2020 Feb 19
14
[RESEND PATCH v2 0/9] iomap: Constify ioreadX() iomem argument
Hi, Changes since v1 ================ https://lore.kernel.org/lkml/1578415992-24054-1-git-send-email-krzk at kernel.org/ 1. Constify also ioreadX_rep() and mmio_insX(), 2. Squash lib+alpha+powerpc+parisc+sh into one patch for bisectability, 3. Add acks and reviews, 4. Re-order patches so all optional driver changes are at the end. Description =========== The ioread8/16/32() and others have
2013 Mar 18
0
[linux-linus test] 17325: regressions - trouble: broken/fail/pass
...@nvidia.com> Alexandre Lissy <alexandrelissy@free.fr> Alexandre Oliva <oliva@gnu.org> Alexandre Pereira da Silva <aletes.xgr@gmail.com> Alexandre Pereira da Silva <aletes.xgr@gmail.com> # LPC32XX Alexandru Guduleasa <alexandru.guduleasa@gmail.com> Alexey Brodkin <abrodkin@synopsys.com> Alexey Charkov <alchark@gmail.com> Alexey Dobriyan <adobriyan@gmail.com> Alexey Fisher <bug-track@fisher-privat.net> Alexey Galakhov <agalakhov@gmail.com> Alexey I. Froloff <raorn@raorn.name> Alexey Kaminsky <me@akaminsky.ne...
2013 Mar 29
0
[linux-linus test] 17454: regressions - FAIL
...ee.fr> Alexandre Oliva <oliva@gnu.org> Alexandre Pereira da Silva <aletes.xgr@gmail.com> Alexandre Pereira da Silva <aletes.xgr@gmail.com> # LPC32XX Alexandru Gheorghiu <gheorghiuandru@gmail.com> Alexandru Guduleasa <alexandru.guduleasa@gmail.com> Alexey Brodkin <abrodkin@synopsys.com> Alexey Charkov <alchark@gmail.com> Alexey Dobriyan <adobriyan@gmail.com> Alexey Fisher <bug-track@fisher-privat.net> Alexey Galakhov <agalakhov@gmail.com> Alexey I. Froloff <raorn@raorn.name> Alexey Kaminsky <me@akaminsky.ne...
2013 Apr 10
0
[linux-linus test] 17612: regressions - FAIL
...ee.fr> Alexandre Oliva <oliva@gnu.org> Alexandre Pereira da Silva <aletes.xgr@gmail.com> Alexandre Pereira da Silva <aletes.xgr@gmail.com> # LPC32XX Alexandru Gheorghiu <gheorghiuandru@gmail.com> Alexandru Guduleasa <alexandru.guduleasa@gmail.com> Alexey Brodkin <abrodkin@synopsys.com> Alexey Charkov <alchark@gmail.com> Alexey Dobriyan <adobriyan@gmail.com> Alexey Fisher <bug-track@fisher-privat.net> Alexey Galakhov <agalakhov@gmail.com> Alexey I. Froloff <raorn@raorn.name> Alexey Kaminsky <me@akaminsky.ne...
2013 May 05
0
[linux-linus test] 17901: regressions - FAIL
...Alexandre Pereira da Silva <aletes.xgr@gmail.com> # LPC32XX Alexandre Torgue <alexandre.torgue@stericsson.com> Alexandru Copot <alex.mihai.c@gmail.com> Alexandru Gheorghiu <gheorghiuandru@gmail.com> Alexandru Guduleasa <alexandru.guduleasa@gmail.com> Alexey Brodkin <abrodkin@synopsys.com> Alexey Charkov <alchark@gmail.com> Alexey Dobriyan <adobriyan@gmail.com> Alexey Fisher <bug-track@fisher-privat.net> Alexey Galakhov <agalakhov@gmail.com> Alexey I. Froloff <raorn@raorn.name> Alexey Kaminsky <me@akaminsky.ne...
2013 May 07
0
[linux-linus test] 17916: regressions - FAIL
...Alexandre Pereira da Silva <aletes.xgr@gmail.com> # LPC32XX Alexandre Torgue <alexandre.torgue@stericsson.com> Alexandru Copot <alex.mihai.c@gmail.com> Alexandru Gheorghiu <gheorghiuandru@gmail.com> Alexandru Guduleasa <alexandru.guduleasa@gmail.com> Alexey Brodkin <abrodkin@synopsys.com> Alexey Charkov <alchark@gmail.com> Alexey Dobriyan <adobriyan@gmail.com> Alexey Fisher <bug-track@fisher-privat.net> Alexey Galakhov <agalakhov@gmail.com> Alexey I. Froloff <raorn@raorn.name> Alexey Kaminsky <me@akaminsky.ne...
2013 Jun 16
0
[linux-linus test] 18150: regressions - FAIL
...Alexandre Pereira da Silva <aletes.xgr@gmail.com> # LPC32XX Alexandre Torgue <alexandre.torgue@stericsson.com> Alexandru Copot <alex.mihai.c@gmail.com> Alexandru Gheorghiu <gheorghiuandru@gmail.com> Alexandru Guduleasa <alexandru.guduleasa@gmail.com> Alexey Brodkin <abrodkin@synopsys.com> Alexey Charkov <alchark@gmail.com> Alexey Dobriyan <adobriyan@gmail.com> Alexey Fisher <bug-track@fisher-privat.net> Alexey Galakhov <agalakhov@gmail.com> Alexey I. Froloff <raorn@raorn.name> Alexey Kaminsky <me@akaminsky.ne...
2013 Jun 23
0
[linux-linus test] 18181: regressions - trouble: broken/fail/pass
...Alexandre Pereira da Silva <aletes.xgr@gmail.com> # LPC32XX Alexandre Torgue <alexandre.torgue@stericsson.com> Alexandru Copot <alex.mihai.c@gmail.com> Alexandru Gheorghiu <gheorghiuandru@gmail.com> Alexandru Guduleasa <alexandru.guduleasa@gmail.com> Alexey Brodkin <abrodkin@synopsys.com> Alexey Charkov <alchark@gmail.com> Alexey Dobriyan <adobriyan@gmail.com> Alexey Fisher <bug-track@fisher-privat.net> Alexey Galakhov <agalakhov@gmail.com> Alexey I. Froloff <raorn@raorn.name> Alexey Kaminsky <me@akaminsky.ne...
2013 Aug 29
0
[linux-linus test] 18805: regressions - FAIL
...@relange.org> Alexandre Torgue <alexandre.torgue@st.com> Alexandre Torgue <alexandre.torgue@stericsson.com> Alexandru Copot <alex.mihai.c@gmail.com> Alexandru Gheorghiu <gheorghiuandru@gmail.com> Alexandru Guduleasa <alexandru.guduleasa@gmail.com> Alexey Brodkin <abrodkin@synopsys.com> Alexey Charkov <alchark@gmail.com> Alexey Dobriyan <adobriyan@gmail.com> Alexey Fisher <bug-track@fisher-privat.net> Alexey Galakhov <agalakhov@gmail.com> Alexey I. Froloff <raorn@raorn.name> Alexey Kaminsky <me@akaminsky.ne...
2013 Aug 29
0
[linux-linus test] 18844: regressions - FAIL
...@relange.org> Alexandre Torgue <alexandre.torgue@st.com> Alexandre Torgue <alexandre.torgue@stericsson.com> Alexandru Copot <alex.mihai.c@gmail.com> Alexandru Gheorghiu <gheorghiuandru@gmail.com> Alexandru Guduleasa <alexandru.guduleasa@gmail.com> Alexey Brodkin <abrodkin@synopsys.com> Alexey Charkov <alchark@gmail.com> Alexey Dobriyan <adobriyan@gmail.com> Alexey Fisher <bug-track@fisher-privat.net> Alexey Galakhov <agalakhov@gmail.com> Alexey I. Froloff <raorn@raorn.name> Alexey Kaminsky <me@akaminsky.ne...