fix watchdog driver unregistering, patch by Bernhard Loos
SVN-Revision: 19979
This commit is contained in:
parent
7c966b8a32
commit
da72558c32
1 changed files with 12 additions and 3 deletions
|
@ -28,6 +28,7 @@
|
||||||
#include <linux/watchdog.h>
|
#include <linux/watchdog.h>
|
||||||
#include <linux/uaccess.h>
|
#include <linux/uaccess.h>
|
||||||
#include <linux/pci.h>
|
#include <linux/pci.h>
|
||||||
|
#include <linux/delay.h>
|
||||||
|
|
||||||
#include <asm/rdc321x_defs.h>
|
#include <asm/rdc321x_defs.h>
|
||||||
|
|
||||||
|
@ -123,8 +124,12 @@ static int rdc321x_wdt_open(struct inode *inode, struct file *file)
|
||||||
|
|
||||||
static int rdc321x_wdt_release(struct inode *inode, struct file *file)
|
static int rdc321x_wdt_release(struct inode *inode, struct file *file)
|
||||||
{
|
{
|
||||||
if (rdc321x_wdt_dev.close_expected)
|
int res;
|
||||||
rdc321x_wdt_stop();
|
if (rdc321x_wdt_dev.close_expected) {
|
||||||
|
res = rdc321x_wdt_stop();
|
||||||
|
if (res)
|
||||||
|
return res;
|
||||||
|
}
|
||||||
|
|
||||||
rdc321x_wdt_dev.inuse = false;
|
rdc321x_wdt_dev.inuse = false;
|
||||||
|
|
||||||
|
@ -181,7 +186,7 @@ static ssize_t rdc321x_wdt_write(struct file *file, const char __user *buf,
|
||||||
size_t count, loff_t *ppos)
|
size_t count, loff_t *ppos)
|
||||||
{
|
{
|
||||||
size_t i;
|
size_t i;
|
||||||
|
|
||||||
if (!count)
|
if (!count)
|
||||||
return -EIO;
|
return -EIO;
|
||||||
|
|
||||||
|
@ -248,6 +253,10 @@ static int __devexit rdc321x_wdt_remove(struct platform_device *pdev)
|
||||||
{
|
{
|
||||||
if (rdc321x_wdt_dev.inuse)
|
if (rdc321x_wdt_dev.inuse)
|
||||||
rdc321x_wdt_dev.inuse = 0;
|
rdc321x_wdt_dev.inuse = 0;
|
||||||
|
|
||||||
|
while (timer_pending(&rdc321x_wdt_dev.timer))
|
||||||
|
msleep(100);
|
||||||
|
|
||||||
misc_deregister(&rdc321x_wdt_misc);
|
misc_deregister(&rdc321x_wdt_misc);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue