<feed xmlns='http://www.w3.org/2005/Atom'>
<title>ldd3, branch master</title>
<subtitle>ldd3 code examples</subtitle>
<link rel='alternate' type='text/html' href='https://git.fcked.net/ldd3/'/>
<entry>
<title>Change in timer_list struct</title>
<updated>2018-06-20T12:59:05+00:00</updated>
<author>
<name>Eusebio Gomez</name>
<email>eu_340@me.com</email>
</author>
<published>2018-06-14T22:54:48+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fcked.net/ldd3/commit/?id=bdf0647e57c8319cf5ce90375891c173b8f5d63f'/>
<id>bdf0647e57c8319cf5ce90375891c173b8f5d63f</id>
<content type='text'>
Member data of timer struct (timer_list) is no longer available. Use timer_setup function to pass the parameter to the callback function</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Member data of timer struct (timer_list) is no longer available. Use timer_setup function to pass the parameter to the callback function</pre>
</div>
</content>
</entry>
<entry>
<title>Update function usb_bulk_msg</title>
<updated>2018-06-20T12:59:05+00:00</updated>
<author>
<name>Eusebio Gomez</name>
<email>eu_340@me.com</email>
</author>
<published>2018-06-14T22:46:25+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fcked.net/ldd3/commit/?id=8b364ee2b4529522817113b0008e52af268fd555'/>
<id>8b364ee2b4529522817113b0008e52af268fd555</id>
<content type='text'>
Change usb_bulk_msg argument 5 data type (size_t to int *)</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change usb_bulk_msg argument 5 data type (size_t to int *)</pre>
</div>
</content>
</entry>
<entry>
<title>tty: tiny_tty: Use timer_setup() instead of init_timer()</title>
<updated>2018-02-25T22:54:39+00:00</updated>
<author>
<name>Javier Martinez Canillas</name>
<email>javier@dowhile0.org</email>
</author>
<published>2018-02-25T22:54:28+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fcked.net/ldd3/commit/?id=3e267492490c0e50c67fd88dc91732bced25761f'/>
<id>3e267492490c0e50c67fd88dc91732bced25761f</id>
<content type='text'>
The init_timer() function has been deprecated, use timer_setup() instead.

Signed-off-by: Javier Martinez Canillas &lt;javier@dowhile0.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The init_timer() function has been deprecated, use timer_setup() instead.

Signed-off-by: Javier Martinez Canillas &lt;javier@dowhile0.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>usb: Include &lt;linux/uaccess.h&gt; header for copy_*_user()</title>
<updated>2018-02-25T22:47:31+00:00</updated>
<author>
<name>Javier Martinez Canillas</name>
<email>javier@dowhile0.org</email>
</author>
<published>2018-02-25T22:47:31+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fcked.net/ldd3/commit/?id=4c73281fed30b754c1dca8a77e4d4bb448a683ed'/>
<id>4c73281fed30b754c1dca8a77e4d4bb448a683ed</id>
<content type='text'>
Signed-off-by: Javier Martinez Canillas &lt;javier@dowhile0.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Javier Martinez Canillas &lt;javier@dowhile0.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>short: Don't use deprecated IRQF_DISABLED flag when requesting a IRQ</title>
<updated>2018-02-25T22:38:23+00:00</updated>
<author>
<name>Javier Martinez Canillas</name>
<email>javier@dowhile0.org</email>
</author>
<published>2018-02-25T22:37:05+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fcked.net/ldd3/commit/?id=c600b086ac0a10c5ac0a64fb027e99f8f4da399c'/>
<id>c600b086ac0a10c5ac0a64fb027e99f8f4da399c</id>
<content type='text'>
The IRQF_DISABLED flag has been removed from the Linux kernel, remove
it from the driver so it compiles again.

Signed-off-by: Javier Martinez Canillas &lt;javier@dowhile0.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The IRQF_DISABLED flag has been removed from the Linux kernel, remove
it from the driver so it compiles again.

Signed-off-by: Javier Martinez Canillas &lt;javier@dowhile0.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>short: Use file_dentry() to get struct file's dentry</title>
<updated>2018-02-25T22:32:36+00:00</updated>
<author>
<name>Javier Martinez Canillas</name>
<email>javier@dowhile0.org</email>
</author>
<published>2018-02-25T22:32:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fcked.net/ldd3/commit/?id=75b0bd7f6a0e10669b999089ed77cc5711ef6993'/>
<id>75b0bd7f6a0e10669b999089ed77cc5711ef6993</id>
<content type='text'>
The struct file doesn't have a struct dentry member anymore, use the macro
to get the struct dentry for a struct file.

Signed-off-by: Javier Martinez Canillas &lt;javier@dowhile0.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The struct file doesn't have a struct dentry member anymore, use the macro
to get the struct dentry for a struct file.

Signed-off-by: Javier Martinez Canillas &lt;javier@dowhile0.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>scullv: Include &lt;linux/uaccess.h&gt; header for copy_*_user()</title>
<updated>2018-02-25T22:30:48+00:00</updated>
<author>
<name>Javier Martinez Canillas</name>
<email>javier@dowhile0.org</email>
</author>
<published>2018-02-25T22:30:48+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fcked.net/ldd3/commit/?id=26acb6fb5d972b5c45980e3298787758854ce499'/>
<id>26acb6fb5d972b5c45980e3298787758854ce499</id>
<content type='text'>
Signed-off-by: Javier Martinez Canillas &lt;javier@dowhile0.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Javier Martinez Canillas &lt;javier@dowhile0.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>scullp: Include &lt;linux/uaccess.h&gt; header for copy_*_user()</title>
<updated>2018-02-25T22:30:15+00:00</updated>
<author>
<name>Javier Martinez Canillas</name>
<email>javier@dowhile0.org</email>
</author>
<published>2018-02-25T22:30:15+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fcked.net/ldd3/commit/?id=b3bcf422dd969ae48103a630d74696ba30c10469'/>
<id>b3bcf422dd969ae48103a630d74696ba30c10469</id>
<content type='text'>
Signed-off-by: Javier Martinez Canillas &lt;javier@dowhile0.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Javier Martinez Canillas &lt;javier@dowhile0.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>scullc: Include &lt;linux/uaccess.h&gt; header for copy_*_user()</title>
<updated>2018-02-25T22:29:19+00:00</updated>
<author>
<name>Javier Martinez Canillas</name>
<email>javier@dowhile0.org</email>
</author>
<published>2018-02-25T22:29:19+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fcked.net/ldd3/commit/?id=b86423a5217ca616feb4b65a5bb02596f08d227d'/>
<id>b86423a5217ca616feb4b65a5bb02596f08d227d</id>
<content type='text'>
Signed-off-by: Javier Martinez Canillas &lt;javier@dowhile0.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Javier Martinez Canillas &lt;javier@dowhile0.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>sculld: Include &lt;linux/uaccess.h&gt; header for copy_*_user()</title>
<updated>2018-02-25T22:27:40+00:00</updated>
<author>
<name>Javier Martinez Canillas</name>
<email>javier@dowhile0.org</email>
</author>
<published>2018-02-25T22:27:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fcked.net/ldd3/commit/?id=02a492016e40583c96c74f74123a555f7be84def'/>
<id>02a492016e40583c96c74f74123a555f7be84def</id>
<content type='text'>
Signed-off-by: Javier Martinez Canillas &lt;javier@dowhile0.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Javier Martinez Canillas &lt;javier@dowhile0.org&gt;
</pre>
</div>
</content>
</entry>
</feed>
