<feed xmlns='http://www.w3.org/2005/Atom'>
<title>packages/libs/dmx_usb_module, branch master</title>
<subtitle>Mirror of packages feed</subtitle>
<id>https://git.openwrt.org/feed/packages/atom?h=master</id>
<link rel='self' href='https://git.openwrt.org/feed/packages/atom?h=master'/>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/'/>
<updated>2024-04-05T20:39:56Z</updated>
<entry>
<title>dmx_usb_module: fix 6.6 kernel compile</title>
<updated>2024-04-05T20:39:56Z</updated>
<author>
<name>Adam Duskett</name>
</author>
<published>2024-04-03T20:19:00Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=9233703a1ed52775ced09de9e4fa682815a2de0a'/>
<id>urn:sha1:9233703a1ed52775ced09de9e4fa682815a2de0a</id>
<content type='text'>
Signed-off-by: Adam Duskett &lt;adam.duskett@amarulasolutions.com&gt;
</content>
</entry>
<entry>
<title>dmx_usb_module: use upstream commit to fix compilation with kernel 6.2+</title>
<updated>2023-09-02T16:56:11Z</updated>
<author>
<name>Josef Schlehofer</name>
</author>
<published>2023-05-15T11:54:50Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=0feea716bd6a39ebccc94ef638881f5548709aaa'/>
<id>urn:sha1:0feea716bd6a39ebccc94ef638881f5548709aaa</id>
<content type='text'>
Recently, there was pushed patch, which fixed only part to get it working with
Linux kernel 6.2+, but it was only local change and it did not use the changes,
which are going to be included in the upcoming dmx_usb_module release.

This commit use the commit from the upstream repository:
https://github.com/lowlander/dmx_usb_module/commit/eeecf40c3eb3dbdf1981c508080ab3aa61e105e2

Fixes: e15d9f75dac2888b9d863c6f2d1c19637631c1fb ("dmx_usb_module: fix compilation warning")

Signed-off-by: Josef Schlehofer &lt;pepe.schlehofer@gmail.com&gt;
</content>
</entry>
<entry>
<title>dmx_usb_module: fix compilation warning</title>
<updated>2023-05-14T14:51:48Z</updated>
<author>
<name>Christian Marangi</name>
</author>
<published>2023-05-14T14:03:20Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=e15d9f75dac2888b9d863c6f2d1c19637631c1fb'/>
<id>urn:sha1:e15d9f75dac2888b9d863c6f2d1c19637631c1fb</id>
<content type='text'>
Fix compilation warning due to wrong cast.
In file included from ./include/linux/kernel.h:19,
                 from /home/ansuel/openwrt-ansuel/openwrt/build_dir/target-aarch64_cortex-a53_musl/linux-ipq807x_generic/dmx_usb_module-19.12.1/dmx_usb.c:16:
/home/ansuel/openwrt-ansuel/openwrt/build_dir/target-aarch64_cortex-a53_musl/linux-ipq807x_generic/dmx_usb_module-19.12.1/dmx_usb.c: In function 'dmx_usb_write':
./include/linux/kern_levels.h:5:25: error: format '%d' expects argument of type 'int', but argument 4 has type 'size_t' {aka 'long unsigned int'} [-Werror=format=]
    5 | #define KERN_SOH        "\001"          /* ASCII Start Of Header */
      |                         ^~~~~~
./include/linux/printk.h:422:25: note: in definition of macro 'printk_index_wrap'
  422 |                 _p_func(_fmt, ##__VA_ARGS__);                           \
      |                         ^~~~
/home/ansuel/openwrt-ansuel/openwrt/build_dir/target-aarch64_cortex-a53_musl/linux-ipq807x_generic/dmx_usb_module-19.12.1/dmx_usb.c:41:45: note: in expansion of macro 'printk'
   41 | #define dbg(format, arg...) do { if (debug) printk(KERN_DEBUG __FILE__ ": " format "\n" , ## arg); } while (0)
      |                                             ^~~~~~
./include/linux/kern_levels.h:15:25: note: in expansion of macro 'KERN_SOH'
   15 | #define KERN_DEBUG      KERN_SOH "7"    /* debug-level messages */
      |                         ^~~~~~~~
/home/ansuel/openwrt-ansuel/openwrt/build_dir/target-aarch64_cortex-a53_musl/linux-ipq807x_generic/dmx_usb_module-19.12.1/dmx_usb.c:41:52: note: in expansion of macro 'KERN_DEBUG'
   41 | #define dbg(format, arg...) do { if (debug) printk(KERN_DEBUG __FILE__ ": " format "\n" , ## arg); } while (0)
      |                                                    ^~~~~~~~~~
/home/ansuel/openwrt-ansuel/openwrt/build_dir/target-aarch64_cortex-a53_musl/linux-ipq807x_generic/dmx_usb_module-19.12.1/dmx_usb.c:409:9: note: in expansion of macro 'dbg'
  409 |         dbg("%s - minor %d, count = %d", __FUNCTION__, dev-&gt;minor, count);
      |         ^~~
cc1: all warnings being treated as errors

Signed-off-by: Christian Marangi &lt;ansuelsmth@gmail.com&gt;
</content>
</entry>
<entry>
<title>dmx_usb_module: update to 19.12.1</title>
<updated>2020-11-25T06:29:35Z</updated>
<author>
<name>Rosen Penev</name>
</author>
<published>2020-11-25T05:40:51Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=d97056efe5d98ab703370da315674ba9552eed79'/>
<id>urn:sha1:d97056efe5d98ab703370da315674ba9552eed79</id>
<content type='text'>
Cleaned up Makefile for consistency between packages.

Remove outdated patch.

Refreshed other one.

Signed-off-by: Rosen Penev &lt;rosenp@gmail.com&gt;
</content>
</entry>
<entry>
<title>dmx_usb_module: fix build against kernel 4.14</title>
<updated>2018-03-01T23:58:15Z</updated>
<author>
<name>Matthias Schiffer</name>
</author>
<published>2018-02-21T23:56:05Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=50cd1f13a1535dfb1222be586d117bae5bbadfd8'/>
<id>urn:sha1:50cd1f13a1535dfb1222be586d117bae5bbadfd8</id>
<content type='text'>
The change should also work fine with older kernels, as &lt;linux/uaccess.h&gt;
has existed for a long time, and it includes &lt;asm/uaccess.h&gt;.

Signed-off-by: Matthias Schiffer &lt;mschiffer@universe-factory.net&gt;
</content>
</entry>
<entry>
<title>dmx_usb_module: change source URL to HTTPS</title>
<updated>2018-03-01T23:58:11Z</updated>
<author>
<name>Matthias Schiffer</name>
</author>
<published>2018-03-01T23:56:49Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=dee7a827300c71de06cdc6f11563e4929d33c5d5'/>
<id>urn:sha1:dee7a827300c71de06cdc6f11563e4929d33c5d5</id>
<content type='text'>
Signed-off-by: Matthias Schiffer &lt;mschiffer@universe-factory.net&gt;
</content>
</entry>
<entry>
<title>dmx_usb_module: new package added</title>
<updated>2014-11-30T17:10:15Z</updated>
<author>
<name>Martijn Zilverschoon</name>
</author>
<published>2014-11-30T15:41:48Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=1f9485a89444fa2d8274e8bff06727ac045807db'/>
<id>urn:sha1:1f9485a89444fa2d8274e8bff06727ac045807db</id>
<content type='text'>
dmx_usb_module is a kernel module that is needed to controll FTDI485 based DMX modules.

Signed-off-by: Martijn Zilverschoon &lt;martijn@friedzombie.com&gt;
</content>
</entry>
</feed>
