|
@@ -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);
|
|
|
}
|
|
|
|
|
|
|