From edd749100c964db85aa43a6e278b89752aa92fde Mon Sep 17 00:00:00 2001 From: Tobias Klauser Date: Thu, 30 Nov 2006 18:01:22 +0100 Subject: Added changelog --- changelog | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 changelog diff --git a/changelog b/changelog new file mode 100644 index 0000000..cd57ec7 --- /dev/null +++ b/changelog @@ -0,0 +1,7 @@ +inotail 0.1 + + * Support for the -n/-c + options (tail relative to start of file) + * Copyright and license cleanup + * Various fixes + + -- Tobias Klauser 2006-11-30 17:56 -- cgit v1.2.3-54-g00ecf distanz.ch/cgit.cgi/linux/net-next.git' title='net-next.git Git repository'/>
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Carpenter <error27@gmail.com>2010-05-14 13:06:19 +0200
committerDave Airlie <airlied@redhat.com>2010-05-18 15:56:14 +1000
commit96525a2f7448c427bb8d99240907a6bd2d9e818c (patch)
tree2794c2f359003f432d40cba0e007531f8fadeb02 /include/drm/drm_edid.h
parentf405a1ab2bf316b1969fc5355891e5dff4e1a54c (diff)
drm_edid: There should be 6 Standard Timings
Smatch complained that we initialize 6 elements in add_detailed_modes() but the timings[] array is declared with 5 elements. Adam Jackson verified that 6 is the correct number of timings. On Mon, May 10, 2010 at 12:08:24PM -0400, Adam Jackson wrote: > > > struct std_timing timings[5]; > > > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ > > This decl is wrong, should be 6. From the 1.4 spec: > > "Six additional Standard Timings may be listed as a display descriptor > (tag #FAh)." > > The 1.3 spec is a little less explicit about it, but does show 6 > standard timing codes in the 0xFA detailed subblock, terminated by 0x0A > in the 18th byte. I don't have the docs for 1.2 or earlier, but we're > paranoid enough about not adding broken timings that we should be fine. This patch is basically a clean up, because timings[] is declared inside a union and increasing the number of elements here doesn't change the overall size of the union. Signed-off-by: Dan Carpenter <error27@gmail.com> Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'include/drm/drm_edid.h')