<feed xmlns='http://www.w3.org/2005/Atom'>
<title>linux/drivers/staging/dgap, branch v3.17</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=v3.17</id>
<link rel='self' href='https://git.shady.money/linux/atom?h=v3.17'/>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/'/>
<updated>2014-07-15T15:26:29Z</updated>
<entry>
<title>staging: dgap: remove dgap_newnode()</title>
<updated>2014-07-15T15:26:29Z</updated>
<author>
<name>Daeseok Youn</name>
<email>daeseok.youn@gmail.com</email>
</author>
<published>2014-07-15T09:50:37Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=825122353a2363b76c5568998be9fed17c5fdbfc'/>
<id>urn:sha1:825122353a2363b76c5568998be9fed17c5fdbfc</id>
<content type='text'>
The dgap_newnode() is useless for creating new node.
So just use kzalloc and set a type in case statement.

Signed-off-by: Daeseok Youn &lt;daeseok.youn@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>staging: dgap: remove unused a parameter in dgap_gettok()</title>
<updated>2014-07-15T15:26:29Z</updated>
<author>
<name>Daeseok Youn</name>
<email>daeseok.youn@gmail.com</email>
</author>
<published>2014-07-15T09:49:52Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=7bab00ff654cfac02ec758e7726cdf1149b18565'/>
<id>urn:sha1:7bab00ff654cfac02ec758e7726cdf1149b18565</id>
<content type='text'>
The "p" as parameter is unused.

Signed-off-by: Daeseok Youn &lt;daeseok.youn@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>staging: dgap: fix a typo in dgap_gettok()</title>
<updated>2014-07-15T15:26:29Z</updated>
<author>
<name>Daeseok Youn</name>
<email>daeseok.youn@gmail.com</email>
</author>
<published>2014-07-15T09:49:09Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=e9cc5b2bb1c1b121f35d430b0e70a73ce2a7a2e5'/>
<id>urn:sha1:e9cc5b2bb1c1b121f35d430b0e70a73ce2a7a2e5</id>
<content type='text'>
The "boar" should be "board".

Signed-off-by: Daeseok Youn &lt;daeseok.youn@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>staging: dgap: remove unused case value in dgap_parsefile()</title>
<updated>2014-07-15T15:26:29Z</updated>
<author>
<name>Daeseok Youn</name>
<email>daeseok.youn@gmail.com</email>
</author>
<published>2014-07-15T09:48:25Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=8e82ce02232c69560d73c6e0f251d4b3d1fc66d6'/>
<id>urn:sha1:8e82ce02232c69560d73c6e0f251d4b3d1fc66d6</id>
<content type='text'>
If rc is zero, this function will returns with an error and
cannot reach switch-case statement.

Signed-off-by: Daeseok Youn &lt;daeseok.youn@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>staging: dgap: remove redundant error value check</title>
<updated>2014-07-15T15:26:29Z</updated>
<author>
<name>Daeseok Youn</name>
<email>daeseok.youn@gmail.com</email>
</author>
<published>2014-07-15T09:47:11Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=dfa30ac13952ee0c2918090815688a909ad074f0'/>
<id>urn:sha1:dfa30ac13952ee0c2918090815688a909ad074f0</id>
<content type='text'>
The retval in dgap_block_til_ready() is initialized to zero,
and if no error has occurred in this function, the retval has a zero.
So it doesn't need to check "retval" itself.

Signed-off-by: Daeseok Youn &lt;daeseok.youn@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>staging: dgap: removes redundant null check and change paramter for dgap_tty_digisetcustombaud()</title>
<updated>2014-07-12T00:36:19Z</updated>
<author>
<name>Daeseok Youn</name>
<email>daeseok.youn@gmail.com</email>
</author>
<published>2014-07-11T10:24:34Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=db6fc2df9c353c9865b4c27c982efeb8fc37a523'/>
<id>urn:sha1:db6fc2df9c353c9865b4c27c982efeb8fc37a523</id>
<content type='text'>
Null checks in dgap_tty_digisetcustombaud() are already done by
dgap_tty_ioctl() and change "tty" as a paramter of this function
to "ch", "bd and "un".

Signed-off-by: Daeseok Youn &lt;daeseok.youn@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>staging: dgap: removes redundant null check and change paramter for dgap_tty_digigetcustombaud()</title>
<updated>2014-07-12T00:35:45Z</updated>
<author>
<name>Daeseok Youn</name>
<email>daeseok.youn@gmail.com</email>
</author>
<published>2014-07-11T10:24:14Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=501bcd4f9bf93d29881fddafcab1982836c41404'/>
<id>urn:sha1:501bcd4f9bf93d29881fddafcab1982836c41404</id>
<content type='text'>
Null checks in dgap_tty_digigetcustombaud() are already done by
dgap_tty_ioctl() and change "tty" as a paramter of this function
to "ch" and "un".

Signed-off-by: Daeseok Youn &lt;daeseok.youn@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>staging: dgap: removes redundant null check and change paramter for dgap_tty_digisetedelay()</title>
<updated>2014-07-12T00:35:45Z</updated>
<author>
<name>Daeseok Youn</name>
<email>daeseok.youn@gmail.com</email>
</author>
<published>2014-07-11T10:23:54Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=ccbe7e59e6be0995dfb47399cf3788c2f47ef53c'/>
<id>urn:sha1:ccbe7e59e6be0995dfb47399cf3788c2f47ef53c</id>
<content type='text'>
Null checks in dgap_tty_digisetedelay() are already done by
dgap_tty_ioctl() and change "tty" as a paramter of this function
to "ch", "bd and "un".

Signed-off-by: Daeseok Youn &lt;daeseok.youn@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>staging: dgap: removes redundant null check and change paramter for dgap_set_modem_info()</title>
<updated>2014-07-12T00:35:45Z</updated>
<author>
<name>Daeseok Youn</name>
<email>daeseok.youn@gmail.com</email>
</author>
<published>2014-07-11T10:23:34Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=4285c97476fee11018caa9c0d6577252a22a4507'/>
<id>urn:sha1:4285c97476fee11018caa9c0d6577252a22a4507</id>
<content type='text'>
Null checks in dgap_set_modem_info() are already done by
dgap_tty_ioctl() and change "tty" as a paramter of this function
to "ch", "bd" and "un".

Signed-off-by: Daeseok Youn &lt;daeseok.youn@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>staging: dgap: removes redundant null check and change paramter for dgap_tty_digigeta()</title>
<updated>2014-07-12T00:35:45Z</updated>
<author>
<name>Daeseok Youn</name>
<email>daeseok.youn@gmail.com</email>
</author>
<published>2014-07-11T10:23:16Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=29a171c18fa8c136e535db62a888205f7fb9699c'/>
<id>urn:sha1:29a171c18fa8c136e535db62a888205f7fb9699c</id>
<content type='text'>
Null checks in dgap_tty_digigeta() are already done by
dgap_tty_ioctl() and change "tty" as a paramter of this function
to "ch" and "un".

Signed-off-by: Daeseok Youn &lt;daeseok.youn@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
</feed>
