Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 162373
b: refs/heads/master
c: 7913c21
h: refs/heads/master
i:
  162371: f64317d
v: v3
  • Loading branch information
Alan Cox authored and Greg Kroah-Hartman committed Sep 15, 2009
1 parent 2f57226 commit e4672a5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 0a18d7b5f36f3c77a239ee752c4ce1197af7b617
refs/heads/master: 7913c21a25a9d54b093bed3522d35b188aadf6a4
4 changes: 3 additions & 1 deletion trunk/drivers/staging/sep/sep_driver.c
Original file line number Diff line number Diff line change
Expand Up @@ -2143,7 +2143,9 @@ static int sep_get_time_handler(unsigned long arg)
struct sep_driver_get_time_t command_args;

error = sep_set_time(&command_args.time_physical_address, &command_args.time_value);
error = copy_to_user((void *) arg, (void *) &command_args, sizeof(struct sep_driver_get_time_t));
if (error == 0)
error = copy_to_user((void __user *)arg,
&command_args, sizeof(struct sep_driver_get_time_t));
return error;

}
Expand Down

0 comments on commit e4672a5

Please sign in to comment.