search for: jg1

Displaying 20 results from an estimated 27 matches for "jg1".

Did you mean: g1
2014 Sep 17
2
[PATCH] virtio: pci: Use SIMPLE_DEV_PM_OPS macro
On Tuesday, September 09, 2014 9:14 AM, Rusty Russell wrote: > Jingoo Han <jg1.han at samsung.com> writes: > > Use SIMPLE_DEV_PM_OPS macro in order to make the code simpler. > > > > Signed-off-by: Jingoo Han <jg1.han at samsung.com> > > This patch is obviously wrong. It won't compile without > CONFIG_PM_SLEEP. No, there is no compile...
2014 Sep 17
2
[PATCH] virtio: pci: Use SIMPLE_DEV_PM_OPS macro
On Tuesday, September 09, 2014 9:14 AM, Rusty Russell wrote: > Jingoo Han <jg1.han at samsung.com> writes: > > Use SIMPLE_DEV_PM_OPS macro in order to make the code simpler. > > > > Signed-off-by: Jingoo Han <jg1.han at samsung.com> > > This patch is obviously wrong. It won't compile without > CONFIG_PM_SLEEP. No, there is no compile...
2014 Sep 05
2
[PATCH] virtio: pci: Use SIMPLE_DEV_PM_OPS macro
Use SIMPLE_DEV_PM_OPS macro in order to make the code simpler. Signed-off-by: Jingoo Han <jg1.han at samsung.com> --- drivers/virtio/virtio_pci.c | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/drivers/virtio/virtio_pci.c b/drivers/virtio/virtio_pci.c index 3d1463c6b120..c5fbdb4023d1 100644 --- a/drivers/virtio/virtio_pci.c +++ b/drivers/virtio/virtio_pci.c...
2014 Sep 05
2
[PATCH] virtio: pci: Use SIMPLE_DEV_PM_OPS macro
Use SIMPLE_DEV_PM_OPS macro in order to make the code simpler. Signed-off-by: Jingoo Han <jg1.han at samsung.com> --- drivers/virtio/virtio_pci.c | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/drivers/virtio/virtio_pci.c b/drivers/virtio/virtio_pci.c index 3d1463c6b120..c5fbdb4023d1 100644 --- a/drivers/virtio/virtio_pci.c +++ b/drivers/virtio/virtio_pci.c...
2013 Nov 25
1
[PATCH] virtio: pci: remove unnecessary pci_set_drvdata()
The driver core clears the driver data to NULL after device_release or on probe failure. Thus, it is not needed to manually clear the device driver data to NULL. Signed-off-by: Jingoo Han <jg1.han at samsung.com> --- drivers/virtio/virtio_pci.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/drivers/virtio/virtio_pci.c b/drivers/virtio/virtio_pci.c index a37c699..a416f9b 100644 --- a/drivers/virtio/virtio_pci.c +++ b/drivers/virtio/virtio_pci.c @@ -742,7 +742,6 @@ static int...
2014 Sep 18
0
[PATCH] virtio: pci: Use SIMPLE_DEV_PM_OPS macro
Jingoo Han <jg1.han at samsung.com> writes: > On Tuesday, September 09, 2014 9:14 AM, Rusty Russell wrote: >> Jingoo Han <jg1.han at samsung.com> writes: >> > Use SIMPLE_DEV_PM_OPS macro in order to make the code simpler. >> > >> > Signed-off-by: Jingoo Han <jg1.han...
2013 Nov 25
1
[PATCH] virtio: pci: remove unnecessary pci_set_drvdata()
The driver core clears the driver data to NULL after device_release or on probe failure. Thus, it is not needed to manually clear the device driver data to NULL. Signed-off-by: Jingoo Han <jg1.han at samsung.com> --- drivers/virtio/virtio_pci.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/drivers/virtio/virtio_pci.c b/drivers/virtio/virtio_pci.c index a37c699..a416f9b 100644 --- a/drivers/virtio/virtio_pci.c +++ b/drivers/virtio/virtio_pci.c @@ -742,7 +742,6 @@ static int...
2008 Sep 28
1
Running Wine on removable media
...arying success. However it would be very useful if I could install and execute Wine entirely on a detachable (encrypted) hard drive so that it does not (and preferably cannot) write to another disk? Is this possible? If so, how? Pls remember I'm a numpty when it comes to cmd line working! Tks jg1
2014 Sep 09
0
[PATCH] virtio: pci: Use SIMPLE_DEV_PM_OPS macro
Jingoo Han <jg1.han at samsung.com> writes: > Use SIMPLE_DEV_PM_OPS macro in order to make the code simpler. > > Signed-off-by: Jingoo Han <jg1.han at samsung.com> This patch is obviously wrong. It won't compile without CONFIG_PM_SLEEP. Cheers, Rusty. > --- > drivers/virtio/virtio_...
2013 Dec 02
0
[PATCH 33/39] virtio: pci: remove DEFINE_PCI_DEVICE_TABLE macro
Don't use DEFINE_PCI_DEVICE_TABLE macro, because this macro is not preferred. Signed-off-by: Jingoo Han <jg1.han at samsung.com> --- drivers/virtio/virtio_pci.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/virtio/virtio_pci.c b/drivers/virtio/virtio_pci.c index a37c699..a4a1f7c 100644 --- a/drivers/virtio/virtio_pci.c +++ b/drivers/virtio/virtio_pci.c @@ -91,7 +91,7 @...
2013 Dec 02
0
[PATCH 33/39] virtio: pci: remove DEFINE_PCI_DEVICE_TABLE macro
Don't use DEFINE_PCI_DEVICE_TABLE macro, because this macro is not preferred. Signed-off-by: Jingoo Han <jg1.han at samsung.com> --- drivers/virtio/virtio_pci.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/virtio/virtio_pci.c b/drivers/virtio/virtio_pci.c index a37c699..a4a1f7c 100644 --- a/drivers/virtio/virtio_pci.c +++ b/drivers/virtio/virtio_pci.c @@ -91,7 +91,7 @...
2013 Jul 19
0
[PATCH] xen: replace strict_strtoul() with kstrtoul()
The usage of strict_strtoul() is not preferred, because strict_strtoul() is obsolete. Thus, kstrtoul() should be used. Signed-off-by: Jingoo Han <jg1.han at samsung.com> --- drivers/xen/xen-selfballoon.c | 54 +++++++++++++++++++++++++++-------------- 1 file changed, 36 insertions(+), 18 deletions(-) diff --git a/drivers/xen/xen-selfballoon.c b/drivers/xen/xen-selfballoon.c index 02817a8..21e18c1 100644 --- a/drivers/xen/xen-selfballoon.c...
2013 Jul 19
0
[PATCH] xen: replace strict_strtoul() with kstrtoul()
The usage of strict_strtoul() is not preferred, because strict_strtoul() is obsolete. Thus, kstrtoul() should be used. Signed-off-by: Jingoo Han <jg1.han at samsung.com> --- drivers/xen/xen-selfballoon.c | 54 +++++++++++++++++++++++++++-------------- 1 file changed, 36 insertions(+), 18 deletions(-) diff --git a/drivers/xen/xen-selfballoon.c b/drivers/xen/xen-selfballoon.c index 02817a8..21e18c1 100644 --- a/drivers/xen/xen-selfballoon.c...
2013 Jul 19
0
[PATCH] xen: replace strict_strtoul() with kstrtoul()
The usage of strict_strtoul() is not preferred, because strict_strtoul() is obsolete. Thus, kstrtoul() should be used. Signed-off-by: Jingoo Han <jg1.han at samsung.com> --- drivers/xen/xen-selfballoon.c | 54 +++++++++++++++++++++++++++-------------- 1 file changed, 36 insertions(+), 18 deletions(-) diff --git a/drivers/xen/xen-selfballoon.c b/drivers/xen/xen-selfballoon.c index 02817a8..21e18c1 100644 --- a/drivers/xen/xen-selfballoon.c...
2012 Nov 19
2
[PATCH 158/493] video: remove use of __devinit
...t; Cc: Florian Tobias Schandinat <FlorianSchandinat at gmx.de> Cc: Jaya Kumar <jayalk at intworks.biz> Cc: Paul Mackerras <paulus at samba.org> Cc: Benjamin Herrenschmidt <benh at kernel.crashing.org> Cc: Russell King <linux at arm.linux.org.uk> Cc: Jingoo Han <jg1.han at samsung.com> Cc: Ferenc Bakonyi <fero at drama.obuda.kando.hu> Cc: Antonino Daplas <adaplas at gmail.com> Cc: Maik Broemme <mbroemme at plusserver.de> Cc: David Brown <davidb at codeaurora.org> Cc: Daniel Walker <dwalker at fifo99.com> Cc: Bryan Huntsma...
2012 Nov 19
2
[PATCH 158/493] video: remove use of __devinit
...t; Cc: Florian Tobias Schandinat <FlorianSchandinat at gmx.de> Cc: Jaya Kumar <jayalk at intworks.biz> Cc: Paul Mackerras <paulus at samba.org> Cc: Benjamin Herrenschmidt <benh at kernel.crashing.org> Cc: Russell King <linux at arm.linux.org.uk> Cc: Jingoo Han <jg1.han at samsung.com> Cc: Ferenc Bakonyi <fero at drama.obuda.kando.hu> Cc: Antonino Daplas <adaplas at gmail.com> Cc: Maik Broemme <mbroemme at plusserver.de> Cc: David Brown <davidb at codeaurora.org> Cc: Daniel Walker <dwalker at fifo99.com> Cc: Bryan Huntsma...
2012 Nov 19
2
[PATCH 158/493] video: remove use of __devinit
...t; Cc: Florian Tobias Schandinat <FlorianSchandinat at gmx.de> Cc: Jaya Kumar <jayalk at intworks.biz> Cc: Paul Mackerras <paulus at samba.org> Cc: Benjamin Herrenschmidt <benh at kernel.crashing.org> Cc: Russell King <linux at arm.linux.org.uk> Cc: Jingoo Han <jg1.han at samsung.com> Cc: Ferenc Bakonyi <fero at drama.obuda.kando.hu> Cc: Antonino Daplas <adaplas at gmail.com> Cc: Maik Broemme <mbroemme at plusserver.de> Cc: David Brown <davidb at codeaurora.org> Cc: Daniel Walker <dwalker at fifo99.com> Cc: Bryan Huntsma...
2020 Feb 27
2
[PATCH] Update the 5 year logo to 10 year logo
...k-eya(P(}qw{?( zi>xLuoI#k-&~xh1AO^Tb=Zt6F!i;}~Fo9BuXGBF;p}gE3bFuv`j<S{^G0J>#Jce3@ z%C$u9@XHWt>y0OrYKy`!z%F-ma1bJrn<E~HNv~Do4~&FBnik%H`D?t%8@&RMezsv% z7#td!zjXHUV&-MC-q+U$C-3Sy2m_W!jf$c?VkgRgijN;f9Z^uwHWl1D7;RlxWyX3| zRYtqD-^+VOB$*)oOPIJypNW1UY1X_a>pBoTO5r0I@DvNFDu8%jG1=96AM)~H)h98L z3X;jHev~l_r`(M429S&k^kz615lH&bG3H(*)n`mI#vDkqATbVAD=)ZiBtZO?9>88( zqZ+(RKqMQcIHp_4@iWSg8OHmPv`@Wt8m8bb-N)aOR+dQkxA!_YbMNUz0L^hcJVyUz z5U|<D02vt)CGj~9#RJ0YpH631YE@bhGz}K0U?v;9;WWh$BnmOxZwpZ>WDEn`&<jww z6J(VvrEZa|R_b#8(mn*tE(gFOnZ)=2Y!(1-a`R37`v<O_qMwxmm0o{)e_...
2013 Mar 18
0
[linux-linus test] 17325: regressions - trouble: broken/fail/pass
...jin@qca.qualcomm.com> Jin Park <jinyoungp@nvidia.com> Jin Qing <b24347@freescale.com> Jing Huang <huangj@brocade.com> Jing Wang <windsdaemon@gmail.com> Jingjie Jiang <jingjie.jiang@oracle.com> Jingjun Wu <jingjun_wu@realsil.com.cn> Jingoo Han <jg1.han@samsung.com> Jinyoung Jeon <jy0.jeon@samsung.com> Jiri Benc <jbenc@redhat.com> Jiri Bohac <jbohac@suse.cz> Jiri Engelthaler <engycz@gmail.com> Jiri Kosina <jkosina@suse.cz> Jiri Olsa <jolsa@redhat.com> Jiri Pirko <jiri@resnulli.us> Ji...
2013 Mar 29
0
[linux-linus test] 17454: regressions - FAIL
...jin@qca.qualcomm.com> Jin Park <jinyoungp@nvidia.com> Jin Qing <b24347@freescale.com> Jing Huang <huangj@brocade.com> Jing Wang <windsdaemon@gmail.com> Jingjie Jiang <jingjie.jiang@oracle.com> Jingjun Wu <jingjun_wu@realsil.com.cn> Jingoo Han <jg1.han@samsung.com> Jinyoung Jeon <jy0.jeon@samsung.com> Jiri Benc <jbenc@redhat.com> Jiri Bohac <jbohac@suse.cz> Jiri Engelthaler <engycz@gmail.com> Jiri Kosina <jkosina@suse.cz> Jiri Kosina <jkosina@suse.cz> (v1) Jiri Olsa <jolsa@redhat.com>...