<feed xmlns='http://www.w3.org/2005/Atom'>
<title>linux/drivers/staging/crystalhd, branch v3.13</title>
<subtitle>Linux kernel source tree</subtitle>
<id>https://git.amat.us/linux/atom/drivers/staging/crystalhd?h=v3.13</id>
<link rel='self' href='https://git.amat.us/linux/atom/drivers/staging/crystalhd?h=v3.13'/>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/'/>
<updated>2013-10-11T22:47:06Z</updated>
<entry>
<title>Staging: crystalhd: use vfree() instead of kfree()</title>
<updated>2013-10-11T22:47:06Z</updated>
<author>
<name>Wei Yongjun</name>
<email>yongjun_wei@trendmicro.com.cn</email>
</author>
<published>2013-10-11T04:39:28Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/commit/?id=a7d7b0163178b85546a075276a81f27c8c24b786'/>
<id>urn:sha1:a7d7b0163178b85546a075276a81f27c8c24b786</id>
<content type='text'>
Use vfree() instead of kfree() to free vmalloc()
allocated data.

Signed-off-by: Wei Yongjun &lt;yongjun_wei@trendmicro.com.cn&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>Staging: crystalhd: Fix sparse warnings regarding static functions</title>
<updated>2013-10-08T01:39:32Z</updated>
<author>
<name>Valentina Manea</name>
<email>valentina.manea.m@gmail.com</email>
</author>
<published>2013-10-07T20:12:14Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/commit/?id=038d3f882926bf49562e5f119957fd81015a9390'/>
<id>urn:sha1:038d3f882926bf49562e5f119957fd81015a9390</id>
<content type='text'>
This fixes the following sparse warnings:
* drivers/staging/crystalhd/crystalhd_lnx.c:78:29: warning:
symbol 'chd_dec_alloc_iodata' was not declared. Should it be static?
* drivers/staging/crystalhd/crystalhd_lnx.c:99:6: warning:
symbol 'chd_dec_free_iodata' was not declared. Should it be static?
* drivers/staging/crystalhd/crystalhd_lnx.c:630:5: warning:
symbol 'chd_dec_pci_suspend' was not declared. Should it be static?
* drivers/staging/crystalhd/crystalhd_lnx.c:664:5: warning:
symbol 'chd_dec_pci_resume' was not declared. Should it be static?

Signed-off-by: Valentina Manea &lt;valentina.manea.m@gmail.com&gt;
Reviewed-by: Josh Triplett &lt;josh@joshtriplett.org&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>Staging: crystalhd: Fix assignment of 0/1 to bool variables</title>
<updated>2013-09-25T23:48:45Z</updated>
<author>
<name>Peter Senna Tschudin</name>
<email>peter.senna@gmail.com</email>
</author>
<published>2013-09-22T18:44:13Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/commit/?id=cdddc28a0803a958993efc72388596493dcf74b6'/>
<id>urn:sha1:cdddc28a0803a958993efc72388596493dcf74b6</id>
<content type='text'>
Convert 0 to false and 1 to true when assigning values to bool
variables. Inspired by commit 3db1cd5c05f35fb43eb134df6f321de4e63141f2.

The simplified semantic patch that find this problem is as
follows (http://coccinelle.lip6.fr/):

@@
bool b;
@@
(
-b = 0
+b = false
|
-b = 1
+b = true
)

Signed-off-by: Peter Senna Tschudin &lt;peter.senna@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>staging: crystalhd: Resolve sparse 'different base types' warnings.</title>
<updated>2013-08-30T18:46:46Z</updated>
<author>
<name>Shaun Laing</name>
<email>shaun@xresource.ca</email>
</author>
<published>2013-08-29T14:27:22Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/commit/?id=df23983c212ab58b3171177a53fad78cea325b99'/>
<id>urn:sha1:df23983c212ab58b3171177a53fad78cea325b99</id>
<content type='text'>
The result from crystalhd_get_sgle_paddr and crystalhd_get_sgle_len are later
used in calculations, so the result should be in CPU byte ordering.

Signed-off-by: Shaun Laing &lt;shaun@xresource.ca&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>Staging: crystalhd: fixed whitespace and string style issues</title>
<updated>2013-08-28T22:28:43Z</updated>
<author>
<name>Robert Foss</name>
<email>dev@robertfoss.se</email>
</author>
<published>2013-08-28T18:51:47Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/commit/?id=8114c93e48e642e12a49c96e31a674d6a7946bf1'/>
<id>urn:sha1:8114c93e48e642e12a49c96e31a674d6a7946bf1</id>
<content type='text'>
Fixed 3 instances of user-visible string being broken into two string.
Fixed 2 instances of illegal whitespace.

Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>Staging: crystalhd: remove an unneeded NULL check</title>
<updated>2013-06-03T19:26:18Z</updated>
<author>
<name>Dan Carpenter</name>
<email>dan.carpenter@oracle.com</email>
</author>
<published>2013-05-30T08:00:34Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/commit/?id=2a1afdbf20ef028d6361c2257b3fef51a8df8b36'/>
<id>urn:sha1:2a1afdbf20ef028d6361c2257b3fef51a8df8b36</id>
<content type='text'>
We already established earlier in the function that "temp" is
non-NULL.  We also don't need to set to NULL because it's a stack
variable an we return immediately.

Signed-off-by: Dan Carpenter &lt;dan.carpenter@oracle.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>staging/crystalhd: Fixes line over 80 characters warning in bc_dts_glob_lnx.h</title>
<updated>2013-05-13T21:24:22Z</updated>
<author>
<name>Amarjargal Gundjalam</name>
<email>amarjargal16@gmail.com</email>
</author>
<published>2013-05-13T10:27:33Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/commit/?id=7258cb65dee6e568f77c42673380ea45c2c27dc1'/>
<id>urn:sha1:7258cb65dee6e568f77c42673380ea45c2c27dc1</id>
<content type='text'>
Fixes the following checkpatch warning
WARNING: line over 80 characters

Signed-off-by: Amarjargal Gundjalam &lt;amarjargal16@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>staging/crystalhd: Fixes line over 80 characters warning in crystalhd_hw.*</title>
<updated>2013-05-13T21:24:22Z</updated>
<author>
<name>Amarjargal Gundjalam</name>
<email>amarjargal16@gmail.com</email>
</author>
<published>2013-05-13T10:23:55Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/commit/?id=62edbbcff80ce3a74e9c0363cc1bca914eb3a15a'/>
<id>urn:sha1:62edbbcff80ce3a74e9c0363cc1bca914eb3a15a</id>
<content type='text'>
Fixes the following checkpatch warning
WARNING: line over 80 characters

Signed-off-by: Amarjargal Gundjalam &lt;amarjargal16@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>staging/crystalhd: Fixes line over 80 characters warning in crystalhd_misc.*</title>
<updated>2013-05-13T21:24:22Z</updated>
<author>
<name>Amarjargal Gundjalam</name>
<email>amarjargal16@gmail.com</email>
</author>
<published>2013-05-13T10:18:07Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/commit/?id=d7c9455a381b3847b68ec4d9ad9bf9b1f4b44434'/>
<id>urn:sha1:d7c9455a381b3847b68ec4d9ad9bf9b1f4b44434</id>
<content type='text'>
Fixes the following checkpatch warning
WARNING: line over 80 characters

Signed-off-by: Amarjargal Gundjalam &lt;amarjargal16@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>staging/crystalhd: Fixes line over 80 characters warning in crystalhd_lnx.*</title>
<updated>2013-05-13T21:24:21Z</updated>
<author>
<name>Amarjargal Gundjalam</name>
<email>amarjargal16@gmail.com</email>
</author>
<published>2013-05-13T03:43:09Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/commit/?id=9ebee9deb6007651f624ba5ccd245fa476366ce7'/>
<id>urn:sha1:9ebee9deb6007651f624ba5ccd245fa476366ce7</id>
<content type='text'>
Fixes the following checkpatch warning
WARNING: line over 80 characters

Signed-off-by: Amarjargal Gundjalam &lt;amarjargal16@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
</feed>
