<feed xmlns='http://www.w3.org/2005/Atom'>
<title>linux-dev/drivers/staging/kpc2000/Makefile, branch master</title>
<subtitle>Linux kernel development work - see feature branches</subtitle>
<id>https://git.zx2c4.com/linux-dev/atom/drivers/staging/kpc2000/Makefile?h=master</id>
<link rel='self' href='https://git.zx2c4.com/linux-dev/atom/drivers/staging/kpc2000/Makefile?h=master'/>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/linux-dev/'/>
<updated>2021-06-12T13:38:35Z</updated>
<entry>
<title>staging: drop kpc2000 driver</title>
<updated>2021-06-12T13:38:35Z</updated>
<author>
<name>Greg Kroah-Hartman</name>
<email>gregkh@linuxfoundation.org</email>
</author>
<published>2021-06-10T18:31:53Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/linux-dev/commit/?id=922a0524f7c46784fadb75aa2ac85405e0a25696'/>
<id>urn:sha1:922a0524f7c46784fadb75aa2ac85405e0a25696</id>
<content type='text'>
It seems that the old developer is no longer with the company producing
this device, and the company has no plans on getting this out of the
staging directory at all, so let's drop the driver for now as it's
pretty much abandonded.

If someone want to support this and get it out of staging, we can easily
revert this change and bring it back.

Cc: Matt Sickler &lt;matt.sickler@msk4.com&gt;
Link: https://lore.kernel.org/r/20210610183153.2397760-1-gregkh@linuxfoundation.org
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>staging: kpc2000: move the i2c driver out of its subdirectory</title>
<updated>2019-05-21T06:14:18Z</updated>
<author>
<name>Greg Kroah-Hartman</name>
<email>gregkh@linuxfoundation.org</email>
</author>
<published>2019-05-20T08:47:14Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/linux-dev/commit/?id=8cac7b354a20742d515d6f649eea32e55a7086b2'/>
<id>urn:sha1:8cac7b354a20742d515d6f649eea32e55a7086b2</id>
<content type='text'>
There is no need for a subdirectory for just a single .c file.  So move
it out of kpc_i2c/ and rename it to the module name that we want the
file to build to, saving one more linking stage.

Cc: Matt Sickler &lt;Matt.Sickler@daktronics.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>staging: kpc2000: move the spi driver out of its subdirectory</title>
<updated>2019-05-21T06:14:18Z</updated>
<author>
<name>Greg Kroah-Hartman</name>
<email>gregkh@linuxfoundation.org</email>
</author>
<published>2019-05-20T08:47:13Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/linux-dev/commit/?id=f900d81cb960097524be3705b050b60aa5959a83'/>
<id>urn:sha1:f900d81cb960097524be3705b050b60aa5959a83</id>
<content type='text'>
There is no need for a subdirectory for just a single .c file.  So move
it out of kpc_spi/ and rename it to the module name that we want the
file to build to, saving one more linking stage.

Cc: Matt Sickler &lt;Matt.Sickler@daktronics.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>staging: kpc2000: Add DMA driver</title>
<updated>2019-04-25T10:07:33Z</updated>
<author>
<name>Matt Sickler</name>
<email>Matt.Sickler@daktronics.com</email>
</author>
<published>2019-04-22T22:05:58Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/linux-dev/commit/?id=7df95299b94a63ec67a6389fc02dc25019a80ee8'/>
<id>urn:sha1:7df95299b94a63ec67a6389fc02dc25019a80ee8</id>
<content type='text'>
Add Daktronics DMA driver.  I've added the SPDX license identifiers, Kconfig
entry, and cleaned up as many of the warnings as I could.

The AIO support code will be removed in a future patch.

Signed-off-by: Matt Sickler &lt;matt.sickler@daktronics.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>staging: kpc2000: add initial set of Daktronics drivers</title>
<updated>2019-04-20T21:04:58Z</updated>
<author>
<name>Greg Kroah-Hartman</name>
<email>gregkh@linuxfoundation.org</email>
</author>
<published>2019-04-19T18:42:05Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/linux-dev/commit/?id=7dc7967fc39af81191558f63eeaf3d2b83899b1c'/>
<id>urn:sha1:7dc7967fc39af81191558f63eeaf3d2b83899b1c</id>
<content type='text'>
These drivers have been outside of the kernel tree since the 2.x days,
and it's time to bring them into the tree so they can get properly
cleaned up.

This first dump of drivers is based on a tarball Matt gave to me, minus
an odd "dma" driver that I could not get to build at all.  I renamed a
few files, added the proper SPDX lines to it, added Kconfig entries and
tied it into the kernel build.  I also fixed up a number of initial
obvious kernel build warnings, but left the odd bitfield warning that
gcc is spitting out, as I'm not quite sure what to do about that.

There's loads of low-hanging coding style cleanups in here for people to
start attacking, as well as the more obvious logic and api cleanups as
well.

Cc: Matt Sickler &lt;Matt.Sickler@daktronics.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
</feed>
