<feed xmlns='http://www.w3.org/2005/Atom'>
<title>kernel/drivers/media/usb/msi2500, branch linux-4.3.y</title>
<subtitle>Hosts the 0x221E linux distro kernel.</subtitle>
<id>https://universe.0xinfinity.dev/distro/kernel/atom?h=linux-4.3.y</id>
<link rel='self' href='https://universe.0xinfinity.dev/distro/kernel/atom?h=linux-4.3.y'/>
<link rel='alternate' type='text/html' href='https://universe.0xinfinity.dev/distro/kernel/'/>
<updated>2015-05-14T11:27:23Z</updated>
<entry>
<title>[media] msi2500: cleanups</title>
<updated>2015-05-14T11:27:23Z</updated>
<author>
<name>Antti Palosaari</name>
<email>crope@iki.fi</email>
</author>
<published>2015-04-29T16:37:34Z</published>
<link rel='alternate' type='text/html' href='https://universe.0xinfinity.dev/distro/kernel/commit/?id=f7e5a6559640dfac9d96bee74d02066a28107aef'/>
<id>urn:sha1:f7e5a6559640dfac9d96bee74d02066a28107aef</id>
<content type='text'>
Rename state to dev.
Correct some indentations.
Remove FSF address.
Fix some style issues reported by checkpatch.pl.
Correct some style issues I liked.

Signed-off-by: Antti Palosaari &lt;crope@iki.fi&gt;
Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@osg.samsung.com&gt;
</content>
</entry>
<entry>
<title>[media] msi2500: revise synthesizer calculation</title>
<updated>2015-05-14T10:57:41Z</updated>
<author>
<name>Antti Palosaari</name>
<email>crope@iki.fi</email>
</author>
<published>2015-04-29T16:13:31Z</published>
<link rel='alternate' type='text/html' href='https://universe.0xinfinity.dev/distro/kernel/commit/?id=faf22b13ee7335129e236804b0e532b1872d1fd8'/>
<id>urn:sha1:faf22b13ee7335129e236804b0e532b1872d1fd8</id>
<content type='text'>
Update synthesizer calculation to model I prefer nowadays. It is mostly
just renaming some variables, but also minor functionality change how
integer and fractional part are divided (using div_u64_rem()). Also, add
'schematic' of synthesizer following my current understanding.

Signed-off-by: Antti Palosaari &lt;crope@iki.fi&gt;
Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@osg.samsung.com&gt;
</content>
</entry>
<entry>
<title>[media] msi2500: remove unneeded spinlock irq flags initialization</title>
<updated>2014-09-21T19:42:35Z</updated>
<author>
<name>Antti Palosaari</name>
<email>crope@iki.fi</email>
</author>
<published>2014-08-25T02:26:23Z</published>
<link rel='alternate' type='text/html' href='https://universe.0xinfinity.dev/distro/kernel/commit/?id=b63ab6b064f73721568a46080d41422ea223ee6e'/>
<id>urn:sha1:b63ab6b064f73721568a46080d41422ea223ee6e</id>
<content type='text'>
There is no need to init flags before calling spin_lock_irqsave().
spin_lock_irqsave is macro which stores value to 'flags'.

Signed-off-by: Antti Palosaari &lt;crope@iki.fi&gt;
Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@osg.samsung.com&gt;
</content>
</entry>
<entry>
<title>[media] msi2500: logging changes</title>
<updated>2014-09-21T19:42:34Z</updated>
<author>
<name>Antti Palosaari</name>
<email>crope@iki.fi</email>
</author>
<published>2014-08-25T01:54:06Z</published>
<link rel='alternate' type='text/html' href='https://universe.0xinfinity.dev/distro/kernel/commit/?id=100b7931f4c300fd6c278d890a92b9668feaf44d'/>
<id>urn:sha1:100b7931f4c300fd6c278d890a92b9668feaf44d</id>
<content type='text'>
Kernel logging system needs pointer to usb interface device in
order to print names and bus numbers properly. There was wrong
device pointer given and log printings wasn't correct.

Signed-off-by: Antti Palosaari &lt;crope@iki.fi&gt;
Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@osg.samsung.com&gt;
</content>
</entry>
<entry>
<title>[media] msi2500: simplify boolean tests</title>
<updated>2014-09-03T20:59:23Z</updated>
<author>
<name>Mauro Carvalho Chehab</name>
<email>m.chehab@samsung.com</email>
</author>
<published>2014-09-03T19:19:29Z</published>
<link rel='alternate' type='text/html' href='https://universe.0xinfinity.dev/distro/kernel/commit/?id=ad7b8c0227ef18b29256e063d788e206c1466ac2'/>
<id>urn:sha1:ad7b8c0227ef18b29256e063d788e206c1466ac2</id>
<content type='text'>
Instead of using if (foo == false), just use
if (!foo).

That allows a faster mental parsing when analyzing the
code.

Signed-off-by: Mauro Carvalho Chehab &lt;m.chehab@samsung.com&gt;
</content>
</entry>
<entry>
<title>[media] msi2500: remove unneeded local pointer on msi2500_isoc_init()</title>
<updated>2014-09-02T18:47:19Z</updated>
<author>
<name>Antti Palosaari</name>
<email>crope@iki.fi</email>
</author>
<published>2014-08-21T15:03:58Z</published>
<link rel='alternate' type='text/html' href='https://universe.0xinfinity.dev/distro/kernel/commit/?id=de3f2e2e0ac94c1369722a33e7d7b2ca121ba083'/>
<id>urn:sha1:de3f2e2e0ac94c1369722a33e7d7b2ca121ba083</id>
<content type='text'>
There is no need to keep local copy of usb_device pointer as we
have same pointer stored and available easily from device state.

Signed-off-by: Antti Palosaari &lt;crope@iki.fi&gt;
Signed-off-by: Mauro Carvalho Chehab &lt;m.chehab@samsung.com&gt;
</content>
</entry>
<entry>
<title>[media] msi2500: rename namespace msi3101 =&gt; msi2500</title>
<updated>2014-07-22T14:35:39Z</updated>
<author>
<name>Antti Palosaari</name>
<email>crope@iki.fi</email>
</author>
<published>2014-07-22T08:43:06Z</published>
<link rel='alternate' type='text/html' href='https://universe.0xinfinity.dev/distro/kernel/commit/?id=06ce32cbad2f03f2ed7026a1cb8026db50f021bc'/>
<id>urn:sha1:06ce32cbad2f03f2ed7026a1cb8026db50f021bc</id>
<content type='text'>
Rename driver namespace according to current driver name. Old
msi3101 was name of reference design, msi2500 is name of chip
itself.

Signed-off-by: Antti Palosaari &lt;crope@iki.fi&gt;
Signed-off-by: Mauro Carvalho Chehab &lt;m.chehab@samsung.com&gt;
</content>
</entry>
<entry>
<title>[media] msi2500: refactor USB stream copying</title>
<updated>2014-07-22T14:34:57Z</updated>
<author>
<name>Antti Palosaari</name>
<email>crope@iki.fi</email>
</author>
<published>2014-07-22T08:29:57Z</published>
<link rel='alternate' type='text/html' href='https://universe.0xinfinity.dev/distro/kernel/commit/?id=8591f708045d8d706adebeaf03e667aa58ccf6ea'/>
<id>urn:sha1:8591f708045d8d706adebeaf03e667aa58ccf6ea</id>
<content type='text'>
There was a lot of duplicated functionality between different
stream format handling. Refactor functionality in order to get
rid of duplicated code.

Signed-off-by: Antti Palosaari &lt;crope@iki.fi&gt;
Signed-off-by: Mauro Carvalho Chehab &lt;m.chehab@samsung.com&gt;
</content>
</entry>
<entry>
<title>[media] msi2500: correct style issues</title>
<updated>2014-07-22T14:33:34Z</updated>
<author>
<name>Antti Palosaari</name>
<email>crope@iki.fi</email>
</author>
<published>2014-07-22T05:44:12Z</published>
<link rel='alternate' type='text/html' href='https://universe.0xinfinity.dev/distro/kernel/commit/?id=c08de62f1fa8813de5bcc0db48570b2340cbaf18'/>
<id>urn:sha1:c08de62f1fa8813de5bcc0db48570b2340cbaf18</id>
<content type='text'>
Correct some style issues, mostly reported by checkpatch.pl.

Signed-off-by: Antti Palosaari &lt;crope@iki.fi&gt;
Signed-off-by: Mauro Carvalho Chehab &lt;m.chehab@samsung.com&gt;
</content>
</entry>
<entry>
<title>[media] msi2500: fill FMT buffer size</title>
<updated>2014-07-22T02:29:14Z</updated>
<author>
<name>Antti Palosaari</name>
<email>crope@iki.fi</email>
</author>
<published>2014-07-18T23:56:01Z</published>
<link rel='alternate' type='text/html' href='https://universe.0xinfinity.dev/distro/kernel/commit/?id=a54e0fee61a585956b4e9a97ae2605600e5c1c82'/>
<id>urn:sha1:a54e0fee61a585956b4e9a97ae2605600e5c1c82</id>
<content type='text'>
Fill FMT buffer size field in order to inform app which will be
used streaming buffer size. Currently driver doesn't allow buffer
size value proposed by application.

Cc: Hans Verkuil &lt;hverkuil@xs4all.nl&gt;
Signed-off-by: Antti Palosaari &lt;crope@iki.fi&gt;
Signed-off-by: Mauro Carvalho Chehab &lt;m.chehab@samsung.com&gt;
</content>
</entry>
</feed>
