<feed xmlns='http://www.w3.org/2005/Atom'>
<title>kernel/linux.git/drivers/platform/goldfish, branch linux-4.20.y</title>
<subtitle>Linux kernel stable tree (mirror)</subtitle>
<id>https://git.radix-linux.su/kernel/linux.git/atom?h=linux-4.20.y</id>
<link rel='self' href='https://git.radix-linux.su/kernel/linux.git/atom?h=linux-4.20.y'/>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/kernel/linux.git/'/>
<updated>2018-10-15T18:36:46+00:00</updated>
<entry>
<title>platform: goldfish: pipe: Add a blank line to separate varibles and code</title>
<updated>2018-10-15T18:36:46+00:00</updated>
<author>
<name>Roman Kiryanov</name>
<email>rkir@google.com</email>
</author>
<published>2018-10-03T17:17:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/kernel/linux.git/commit/?id=6d7d725b2e62b00f6b0b36639ba597efe9cc8ea9'/>
<id>urn:sha1:6d7d725b2e62b00f6b0b36639ba597efe9cc8ea9</id>
<content type='text'>
checkpacth: Missing a blank line after declarations

Signed-off-by: Roman Kiryanov &lt;rkir@google.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>platform: goldfish: pipe: Remove redundant casting</title>
<updated>2018-10-15T18:36:46+00:00</updated>
<author>
<name>Roman Kiryanov</name>
<email>rkir@google.com</email>
</author>
<published>2018-10-03T17:17:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/kernel/linux.git/commit/?id=e6fb3193307dc6bd1de9354a7937385e73fd06cb'/>
<id>urn:sha1:e6fb3193307dc6bd1de9354a7937385e73fd06cb</id>
<content type='text'>
This casting is not required.

Signed-off-by: Roman Kiryanov &lt;rkir@google.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>platform: goldfish: pipe: Call misc_deregister if init fails</title>
<updated>2018-10-15T18:36:46+00:00</updated>
<author>
<name>Roman Kiryanov</name>
<email>rkir@google.com</email>
</author>
<published>2018-10-03T17:17:09+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/kernel/linux.git/commit/?id=60a6e5233fcbe82a89b5b83b95b5d87e04b3be60'/>
<id>urn:sha1:60a6e5233fcbe82a89b5b83b95b5d87e04b3be60</id>
<content type='text'>
Undo effects of misc_register if driver's init fails after
misc_register.

Signed-off-by: Roman Kiryanov &lt;rkir@google.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>platform: goldfish: pipe: Move the file-scope goldfish_pipe_dev variable into the driver state</title>
<updated>2018-10-15T18:36:46+00:00</updated>
<author>
<name>Roman Kiryanov</name>
<email>rkir@google.com</email>
</author>
<published>2018-10-03T17:17:08+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/kernel/linux.git/commit/?id=08360e26f2a8eba0105ca7cd598547a1749b1c68'/>
<id>urn:sha1:08360e26f2a8eba0105ca7cd598547a1749b1c68</id>
<content type='text'>
This is the last patch in the series of patches to move file-scope
variables into the driver state. This change will help to introduce
another version of the pipe driver (with different state) for the
older host interface or having several instances of this device.

Signed-off-by: Roman Kiryanov &lt;rkir@google.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>platform: goldfish: pipe: Move the file-scope goldfish_pipe_miscdev variable into the driver state</title>
<updated>2018-10-15T18:36:46+00:00</updated>
<author>
<name>Roman Kiryanov</name>
<email>rkir@google.com</email>
</author>
<published>2018-10-03T17:17:07+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/kernel/linux.git/commit/?id=43c2cc2864bca0cceff331f27fe762fcf0d804b2'/>
<id>urn:sha1:43c2cc2864bca0cceff331f27fe762fcf0d804b2</id>
<content type='text'>
This is a series of patches to move mutable file-scope variables
into the driver state. This change will help to introduce another
version of the pipe driver (with different state) for the older
host interface or having several instances of this device.

Signed-off-by: Roman Kiryanov &lt;rkir@google.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>platform: goldfish: pipe: Move the file-scope goldfish_interrupt_tasklet variable into the driver state</title>
<updated>2018-10-15T18:36:46+00:00</updated>
<author>
<name>Roman Kiryanov</name>
<email>rkir@google.com</email>
</author>
<published>2018-10-03T17:17:06+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/kernel/linux.git/commit/?id=c394cc3b470c0adfee2dff4b8b2a907a73a0ee81'/>
<id>urn:sha1:c394cc3b470c0adfee2dff4b8b2a907a73a0ee81</id>
<content type='text'>
This is a series of patches to move mutable file-scope variables
into the driver state. This change will help to introduce another
version of the pipe driver (with different state) for the older
host interface or having several instances of this device.

Signed-off-by: Roman Kiryanov &lt;rkir@google.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>platform: goldfish: pipe: Make symbol 'goldfish_pipe_dev' static</title>
<updated>2018-09-25T18:38:57+00:00</updated>
<author>
<name>Wei Yongjun</name>
<email>weiyongjun1@huawei.com</email>
</author>
<published>2018-09-20T06:22:05+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/kernel/linux.git/commit/?id=3790e28cdbc8e7c4ffff62a9e4db89fe6e066c0b'/>
<id>urn:sha1:3790e28cdbc8e7c4ffff62a9e4db89fe6e066c0b</id>
<content type='text'>
Fixes the following sparse warning:

drivers/platform/goldfish/goldfish_pipe.c:214:26: warning:
 symbol 'goldfish_pipe_dev' was not declared. Should it be static?

Signed-off-by: Wei Yongjun &lt;weiyongjun1@huawei.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>platform: goldfish: pipe: Remove redundant header include</title>
<updated>2018-09-25T18:25:42+00:00</updated>
<author>
<name>Roman Kiryanov</name>
<email>rkir@google.com</email>
</author>
<published>2018-09-14T17:51:06+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/kernel/linux.git/commit/?id=581ae6b7225aaf469001557900763d14898e3683'/>
<id>urn:sha1:581ae6b7225aaf469001557900763d14898e3683</id>
<content type='text'>
No symbols were used from this header.

Signed-off-by: Roman Kiryanov &lt;rkir@google.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>platform: goldfish: pipe: Remove redundant struct declarations</title>
<updated>2018-09-25T18:25:42+00:00</updated>
<author>
<name>Roman Kiryanov</name>
<email>rkir@google.com</email>
</author>
<published>2018-09-14T17:51:05+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/kernel/linux.git/commit/?id=6b979998a0c602d8de2475359e51d060fe60db37'/>
<id>urn:sha1:6b979998a0c602d8de2475359e51d060fe60db37</id>
<content type='text'>
goldfish_pipe_command is defines just after declaration and
nothing refers to goldfish_pipe before it is defined.

Signed-off-by: Roman Kiryanov &lt;rkir@google.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>platform: goldfish: pipe: Remove a redundant blank line</title>
<updated>2018-09-25T18:25:42+00:00</updated>
<author>
<name>Roman Kiryanov</name>
<email>rkir@google.com</email>
</author>
<published>2018-09-14T17:51:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/kernel/linux.git/commit/?id=77994c69b6523925c9c852b9afd2a2d4d40b8b8c'/>
<id>urn:sha1:77994c69b6523925c9c852b9afd2a2d4d40b8b8c</id>
<content type='text'>
The blank line is not required there.

Signed-off-by: Roman Kiryanov &lt;rkir@google.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
</feed>
