diff options
author | Joonwoo Park <joonwpark81@gmail.com> | 2009-08-26 14:29:18 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-08-26 20:06:52 -0700 |
commit | 054b2b13ccba4876a1ce98a7ede7dab7d6893d01 (patch) | |
tree | 0421da355e30375d251e0fdb570fce2518e7a201 /drivers/pps | |
parent | f415c413f458837bd0c27086b79aca889f9435e4 (diff) | |
download | linux-3.10-054b2b13ccba4876a1ce98a7ede7dab7d6893d01.tar.gz linux-3.10-054b2b13ccba4876a1ce98a7ede7dab7d6893d01.tar.bz2 linux-3.10-054b2b13ccba4876a1ce98a7ede7dab7d6893d01.zip |
pps: fix incorrect verdict check
Fix incorrect verdict check and returns error if device_create failed,
otherwise driver triggers kernel oops.
Signed-off-by: Joonwoo Park<joonwpark81@gmail.com>
Cc: Rodolfo Giometti <giometti@enneenne.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/pps')
-rw-r--r-- | drivers/pps/pps.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pps/pps.c b/drivers/pps/pps.c index ac8cc8cea1e..fea17e7805e 100644 --- a/drivers/pps/pps.c +++ b/drivers/pps/pps.c @@ -244,7 +244,7 @@ int pps_register_cdev(struct pps_device *pps) } pps->dev = device_create(pps_class, pps->info.dev, pps->devno, NULL, "pps%d", pps->id); - if (err) + if (IS_ERR(pps->dev)) goto del_cdev; dev_set_drvdata(pps->dev, pps); |