9
0
Fork 0

sandbox: allow lseek on host files

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Peter Korsgaard 2011-05-17 13:53:54 +02:00 committed by Sascha Hauer
parent 64476d2177
commit c2bd07f6a9
1 changed files with 1 additions and 0 deletions

View File

@ -66,6 +66,7 @@ static void hf_info(struct device_d *dev)
static struct file_operations hf_fops = {
.read = hf_read,
.write = hf_write,
.lseek = dev_lseek_default,
};
static int hf_probe(struct device_d *dev)