<feed xmlns='http://www.w3.org/2005/Atom'>
<title>linux/drivers/staging/dgnc, branch v4.5</title>
<subtitle>Mirror of https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/
</subtitle>
<id>https://git.shady.money/linux/atom?h=v4.5</id>
<link rel='self' href='https://git.shady.money/linux/atom?h=v4.5'/>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/'/>
<updated>2015-12-21T23:52:34Z</updated>
<entry>
<title>staging: dgnc: dgnc_cls.c: Replaced udelay by usleep_range</title>
<updated>2015-12-21T23:52:34Z</updated>
<author>
<name>Jitendra Kumar Khasdev</name>
<email>jkhasdev@gmail.com</email>
</author>
<published>2015-11-24T17:31:13Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=6e411751f00faf00379f6aa94701ab360b068cff'/>
<id>urn:sha1:6e411751f00faf00379f6aa94701ab360b068cff</id>
<content type='text'>
This patch is to file dgnc_cls.c that fixes up udelay function by
usleep_range.
It is safe to use according to the following documentation
Documentation/timers/timers-howto.txt. So that is why I have given
an appropriate time range.

Signed-off-by: Jitendra Kumar Khasdev &lt;jkhasdev@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>Staging: dgnc: dgnc_tty: Typo error dgnc_wmove comment</title>
<updated>2015-12-21T23:50:59Z</updated>
<author>
<name>Nizam Haider</name>
<email>nizamhaider786@gmail.com</email>
</author>
<published>2015-11-14T14:40:46Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=f7f2b10a82e8774eab3bd90061caccf8931a8bf4'/>
<id>urn:sha1:f7f2b10a82e8774eab3bd90061caccf8931a8bf4</id>
<content type='text'>
Fix Typo errror in the comment section of dgnc_wmove

Signed-off-by: Nizam Haider &lt;nijamh@cdac.in&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>Staging: dgnc: dgnc_neo.c Braces {} should be used on all arms of this statement</title>
<updated>2015-12-21T23:50:59Z</updated>
<author>
<name>Nizam Haider</name>
<email>nizamhaider786@gmail.com</email>
</author>
<published>2015-11-14T14:40:45Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=013514946cbd85dea2a12e8848f2cfb775eecd52'/>
<id>urn:sha1:013514946cbd85dea2a12e8848f2cfb775eecd52</id>
<content type='text'>
Fix Checlpatch warning
HECK: braces {} should be used on all arms of this statement

Signed-off-by: Nizam Haider &lt;nijamh@cdac.in&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>driver:staging:dgnc Fix spaces preferred around that ...</title>
<updated>2015-12-21T23:50:56Z</updated>
<author>
<name>Bogicevic Sasa</name>
<email>brutallesale@gmail.com</email>
</author>
<published>2015-11-13T14:07:21Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=5bff5d9f2b557f63015925b1b076f98010533c52'/>
<id>urn:sha1:5bff5d9f2b557f63015925b1b076f98010533c52</id>
<content type='text'>
This fixes all "spaces preferred around that ..." messages from
checkpatch.pl

Signed-off-by: Bogicevic Sasa &lt;brutallesale@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>Staging: dgnc: Remove unused #include header file</title>
<updated>2015-11-16T04:02:47Z</updated>
<author>
<name>Shraddha Barke</name>
<email>shraddha.6596@gmail.com</email>
</author>
<published>2015-10-30T14:03:03Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=b4f286a953f0d9582fc5ec5d823afc6035470461'/>
<id>urn:sha1:b4f286a953f0d9582fc5ec5d823afc6035470461</id>
<content type='text'>
Since the things defined by digi.h are not used in dgnc_utils.c,
remove the header from this file.

Signed-off-by: Shraddha Barke &lt;shraddha.6596@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>staging: dgnc: dgnc_driver: Remove useless initialisation</title>
<updated>2015-10-17T05:56:23Z</updated>
<author>
<name>Amitoj Kaur Chawla</name>
<email>amitoj1606@gmail.com</email>
</author>
<published>2015-10-15T08:26:52Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=f4edff5208df48ebb3099a3b4a521eb58803f877'/>
<id>urn:sha1:f4edff5208df48ebb3099a3b4a521eb58803f877</id>
<content type='text'>
Remove intialisation of a variable that is immediately reassigned.

The semantic patch used to find this is:

// &lt;smpl&gt;
@@
type T;
identifier x;
constant C;
expression e;
@@

T x
- = C
 ;
x = e;
// &lt;/smpl&gt;

Signed-off-by: Amitoj Kaur Chawla &lt;amitoj1606@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>staging: dgnc: dgnc_tty: Remove useless initialisation</title>
<updated>2015-10-17T05:56:23Z</updated>
<author>
<name>Amitoj Kaur Chawla</name>
<email>amitoj1606@gmail.com</email>
</author>
<published>2015-10-15T08:25:45Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=d09c1b96a731639436402bf0d957b974f4eed6b8'/>
<id>urn:sha1:d09c1b96a731639436402bf0d957b974f4eed6b8</id>
<content type='text'>
Remove intialisation of a variable that is immediately reassigned.

The semantic patch used to find this is:

// &lt;smpl&gt;
@@
type T;
identifier x;
constant C;
expression e;
@@

T x
- = C
 ;
x = e;
// &lt;/smpl&gt;

Signed-off-by: Amitoj Kaur Chawla &lt;amitoj1606@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>staging: dgnc: Fix lines over 80 characters</title>
<updated>2015-10-17T05:56:23Z</updated>
<author>
<name>Cristina Moraru</name>
<email>cristina.moraru09@gmail.com</email>
</author>
<published>2015-10-14T20:26:15Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=51c826f0733479a44407a7bb28b1c160ec1a19f3'/>
<id>urn:sha1:51c826f0733479a44407a7bb28b1c160ec1a19f3</id>
<content type='text'>
Fix 'line over 80 characters' checkpatch.pl
warnings

Signed-off-by: Cristina Moraru &lt;cristina.moraru09@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>staging/dgnc: fix info leak in ioctl</title>
<updated>2015-10-17T05:51:40Z</updated>
<author>
<name>Salva Peiró</name>
<email>speirofr@gmail.com</email>
</author>
<published>2015-10-14T15:48:02Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=4b6184336ebb5c8dc1eae7f7ab46ee608a748b05'/>
<id>urn:sha1:4b6184336ebb5c8dc1eae7f7ab46ee608a748b05</id>
<content type='text'>
The dgnc_mgmt_ioctl() code fails to initialize the 16 _reserved bytes of
struct digi_dinfo after the -&gt;dinfo_nboards member. Add an explicit
memset(0) before filling the structure to avoid the info leak.

Signed-off-by: Salva Peiró &lt;speirofr@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>staging: dgnc: simplify a trivial if-return sequence</title>
<updated>2015-10-13T04:09:51Z</updated>
<author>
<name>Parshuram Thombare</name>
<email>thombarepr@yahoo.com</email>
</author>
<published>2015-10-10T23:06:44Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=36e712a8a14d336a2f6433f64a8e2bb974138aec'/>
<id>urn:sha1:36e712a8a14d336a2f6433f64a8e2bb974138aec</id>
<content type='text'>
Signed-off-by: Parshuram Thombare &lt;thombarepr@yahoo.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
</feed>
