dect
/
linux-2.6
Archived
13
0
Fork 0

aty: use memory_read_from_buffer()

Signed-off-by: Akinobu Mita <akinobu.mita@gmail.com>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Cc: "Antonino A. Daplas" <adaplas@pol.net>
Cc: Krzysztof Helt <krzysztof.h1@poczta.fm>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
Akinobu Mita 2008-07-23 21:31:33 -07:00 committed by Linus Torvalds
parent 1c554ff955
commit a882ef47c7
1 changed files with 1 additions and 9 deletions

View File

@ -2098,15 +2098,7 @@ static void radeon_identify_vram(struct radeonfb_info *rinfo)
static ssize_t radeon_show_one_edid(char *buf, loff_t off, size_t count, const u8 *edid)
{
if (off > EDID_LENGTH)
return 0;
if (off + count > EDID_LENGTH)
count = EDID_LENGTH - off;
memcpy(buf, edid + off, count);
return count;
return memory_read_from_buffer(buf, count, &off, edid, EDID_LENGTH);
}