<feed xmlns='http://www.w3.org/2005/Atom'>
<title>u-boot.git/drivers/video/cfb_console.c, branch v2017.07</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.</subtitle>
<id>http://cgit.235523.xyz/u-boot.git/atom/drivers/video/cfb_console.c?h=v2017.07</id>
<link rel='self' href='http://cgit.235523.xyz/u-boot.git/atom/drivers/video/cfb_console.c?h=v2017.07'/>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/'/>
<updated>2017-07-06T20:17:19Z</updated>
<entry>
<title>avr32: Retire AVR32 for good</title>
<updated>2017-07-06T20:17:19Z</updated>
<author>
<name>Andy Shevchenko</name>
<email>andriy.shevchenko@linux.intel.com</email>
</author>
<published>2017-07-05T13:25:22Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=daab59ac05d8fd1092e34a4c695ac265ae700141'/>
<id>urn:sha1:daab59ac05d8fd1092e34a4c695ac265ae700141</id>
<content type='text'>
AVR32 is gone. It's already more than two years for no support in Buildroot,
even longer there is no support in GCC (last version is heavily patched 4.2.4).

Linux kernel v4.12 got rid of it (and v4.11 didn't build successfully).

There is no good point to keep this support in U-Boot either.

Reviewed-by: Simon Glass &lt;sjg@chromium.org&gt;
Reviewed-by: Tom Rini &lt;trini@konsulko.com&gt;
Reviewed-by: Heiko Schocher &lt;hs@denx.de&gt;
Signed-off-by: Andy Shevchenko &lt;andriy.shevchenko@linux.intel.com&gt;
</content>
</entry>
<entry>
<title>video: cfb_console: fix 32-bit display on 64-bit architectures</title>
<updated>2017-03-07T20:18:23Z</updated>
<author>
<name>Andre Przywara</name>
<email>andre.przywara@arm.com</email>
</author>
<published>2017-03-06T01:13:38Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=1d4ed26fafb4250a1a9f9aba55de05062330ea5b'/>
<id>urn:sha1:1d4ed26fafb4250a1a9f9aba55de05062330ea5b</id>
<content type='text'>
"unsigned long" is a lousy data type when it comes to match peripheral
hardware registers with a fixed size.
Just do the obvious and match a 32-bit display format with an "u32"
data type for casting.
This fixes the logo display on 64-bit architectures, which produced
a black line on the right side of the logo with non-black backgrounds.

Signed-off-by: Andre Przywara &lt;andre.przywara@arm.com&gt;
</content>
</entry>
<entry>
<title>drivers/video/cfb_console.c: Correct "COFNIG_NDS32" typo.</title>
<updated>2017-02-03T12:27:23Z</updated>
<author>
<name>Robert P. J. Day</name>
<email>rpjday@crashcourse.ca</email>
</author>
<published>2017-02-03T12:14:02Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=9b23bafb4f628aca7a2852f097a7b7da66cac6d8'/>
<id>urn:sha1:9b23bafb4f628aca7a2852f097a7b7da66cac6d8</id>
<content type='text'>
Signed-off-by: Robert P. J. Day &lt;rpjday@crashcourse.ca&gt;
</content>
</entry>
<entry>
<title>video: cfb_console: fix hang if splashimage file is missing</title>
<updated>2017-01-13T19:20:35Z</updated>
<author>
<name>Anatolij Gustschin</name>
<email>agust@denx.de</email>
</author>
<published>2016-11-30T13:30:59Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=b4fc6f221474e2bc9f3e4af52556fd4ab5cbb9b9'/>
<id>urn:sha1:b4fc6f221474e2bc9f3e4af52556fd4ab5cbb9b9</id>
<content type='text'>
If the splash file doesn't exist, the booting stops bricking
the boards. Check return value of prepare function and stop
decoding the logo data if splash prepare stage failed.

Signed-off-by: Anatolij Gustschin &lt;agust@denx.de&gt;
</content>
</entry>
<entry>
<title>video: Move video_get_info_str() prototype to a header file</title>
<updated>2016-10-23T22:33:54Z</updated>
<author>
<name>Simon Glass</name>
<email>sjg@chromium.org</email>
</author>
<published>2016-10-18T02:12:54Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=0a6eac842ea288411309cebdc4e72ff59ea6c5ee'/>
<id>urn:sha1:0a6eac842ea288411309cebdc4e72ff59ea6c5ee</id>
<content type='text'>
This should be defined in a header file so that arguments are checked.
Move it to video.h.

Signed-off-by: Simon Glass &lt;sjg@chromium.org&gt;
Reviewed-by: Tom Rini &lt;trini@konsulko.com&gt;
</content>
</entry>
<entry>
<title>Convert CONFIG_VIDEO_SW_CURSOR to Kconfig</title>
<updated>2016-10-23T22:33:52Z</updated>
<author>
<name>Simon Glass</name>
<email>sjg@chromium.org</email>
</author>
<published>2016-10-18T02:12:51Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=0872d443aa75c86c0ce0c3008a0ac0e0889a9821'/>
<id>urn:sha1:0872d443aa75c86c0ce0c3008a0ac0e0889a9821</id>
<content type='text'>
This converts the following to Kconfig:
   CONFIG_VIDEO_SW_CURSOR

Signed-off-by: Simon Glass &lt;sjg@chromium.org&gt;
Reviewed-by: Tom Rini &lt;trini@konsulko.com&gt;
[trini: Re-convert, find all the cases where this is off]
Signed-off-by: Tom Rini &lt;trini@konsulko.com&gt;
</content>
</entry>
<entry>
<title>video: Drop CONFIG_VIDEO_HW_CURSOR</title>
<updated>2016-10-23T22:33:48Z</updated>
<author>
<name>Simon Glass</name>
<email>sjg@chromium.org</email>
</author>
<published>2016-10-18T02:12:50Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=a4206575c8e0108faed0383c08b743b50e5562f5'/>
<id>urn:sha1:a4206575c8e0108faed0383c08b743b50e5562f5</id>
<content type='text'>
This is not used in U-Boot.

Signed-off-by: Simon Glass &lt;sjg@chromium.org&gt;
Reviewed-by: Tom Rini &lt;trini@konsulko.com&gt;
</content>
</entry>
<entry>
<title>Convert CONFIG_VGA_AS_SINGLE_DEVICE to Kconfig</title>
<updated>2016-10-23T22:33:48Z</updated>
<author>
<name>Simon Glass</name>
<email>sjg@chromium.org</email>
</author>
<published>2016-10-18T02:12:49Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=1e1a0fb23d0b6d80df6e3c939249eaf3bd0c42f2'/>
<id>urn:sha1:1e1a0fb23d0b6d80df6e3c939249eaf3bd0c42f2</id>
<content type='text'>
This converts the following to Kconfig:
   CONFIG_VGA_AS_SINGLE_DEVICE

Once we migrate to driver model for video, we should be able to drop this
option.

Signed-off-by: Simon Glass &lt;sjg@chromium.org&gt;
</content>
</entry>
<entry>
<title>video: Drop the sed13806 driver</title>
<updated>2016-10-23T22:33:43Z</updated>
<author>
<name>Simon Glass</name>
<email>sjg@chromium.org</email>
</author>
<published>2016-10-18T02:12:48Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=ac8a32ff1dd68bd394a0963328a89b72c0f828f1'/>
<id>urn:sha1:ac8a32ff1dd68bd394a0963328a89b72c0f828f1</id>
<content type='text'>
This is not used in U-Boot.

Signed-off-by: Simon Glass &lt;sjg@chromium.org&gt;
Reviewed-by: Tom Rini &lt;trini@konsulko.com&gt;
</content>
</entry>
<entry>
<title>video: Drop the s3c-fb driver</title>
<updated>2016-10-23T22:33:42Z</updated>
<author>
<name>Simon Glass</name>
<email>sjg@chromium.org</email>
</author>
<published>2016-10-18T02:12:47Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=c370d382cec014c3dc97e19527a5f6d2e390cde1'/>
<id>urn:sha1:c370d382cec014c3dc97e19527a5f6d2e390cde1</id>
<content type='text'>
This is not used in U-Boot.

Signed-off-by: Simon Glass &lt;sjg@chromium.org&gt;
Acked-by: Minkyu Kang &lt;mk7.kang@samsung.com&gt;
Reviewed-by: Tom Rini &lt;trini@konsulko.com&gt;
</content>
</entry>
</feed>
