Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
9e533ec6
Commit
9e533ec6
authored
Mar 14, 2004
by
Wim Van Sebroeck
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[WATCHDOG] v2.6.4 notifier_block-patches
Remove unnecessary initialization in notifier_block
parent
b52ce0ba
Changes
11
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
0 additions
and
22 deletions
+0
-22
drivers/char/watchdog/advantechwdt.c
drivers/char/watchdog/advantechwdt.c
+0
-2
drivers/char/watchdog/alim1535_wdt.c
drivers/char/watchdog/alim1535_wdt.c
+0
-2
drivers/char/watchdog/alim7101_wdt.c
drivers/char/watchdog/alim7101_wdt.c
+0
-2
drivers/char/watchdog/ib700wdt.c
drivers/char/watchdog/ib700wdt.c
+0
-2
drivers/char/watchdog/machzwd.c
drivers/char/watchdog/machzwd.c
+0
-2
drivers/char/watchdog/sbc60xxwdt.c
drivers/char/watchdog/sbc60xxwdt.c
+0
-2
drivers/char/watchdog/sc520_wdt.c
drivers/char/watchdog/sc520_wdt.c
+0
-2
drivers/char/watchdog/w83627hf_wdt.c
drivers/char/watchdog/w83627hf_wdt.c
+0
-2
drivers/char/watchdog/w83877f_wdt.c
drivers/char/watchdog/w83877f_wdt.c
+0
-2
drivers/char/watchdog/wafer5823wdt.c
drivers/char/watchdog/wafer5823wdt.c
+0
-2
drivers/char/watchdog/wdt.c
drivers/char/watchdog/wdt.c
+0
-2
No files found.
drivers/char/watchdog/advantechwdt.c
View file @
9e533ec6
...
...
@@ -256,8 +256,6 @@ static struct miscdevice advwdt_miscdev = {
static
struct
notifier_block
advwdt_notifier
=
{
.
notifier_call
=
advwdt_notify_sys
,
.
next
=
NULL
,
.
priority
=
0
,
};
static
int
__init
...
...
drivers/char/watchdog/alim1535_wdt.c
View file @
9e533ec6
...
...
@@ -385,8 +385,6 @@ static struct miscdevice ali_miscdev = {
static
struct
notifier_block
ali_notifier
=
{
.
notifier_call
=
ali_notify_sys
,
.
next
=
NULL
,
.
priority
=
0
,
};
/*
...
...
drivers/char/watchdog/alim7101_wdt.c
View file @
9e533ec6
...
...
@@ -303,8 +303,6 @@ static int wdt_notify_sys(struct notifier_block *this, unsigned long code, void
static
struct
notifier_block
wdt_notifier
=
{
.
notifier_call
=
wdt_notify_sys
,
.
next
=
0
,
.
priority
=
0
,
};
static
void
__exit
alim7101_wdt_unload
(
void
)
...
...
drivers/char/watchdog/ib700wdt.c
View file @
9e533ec6
...
...
@@ -284,8 +284,6 @@ static struct miscdevice ibwdt_miscdev = {
static
struct
notifier_block
ibwdt_notifier
=
{
.
notifier_call
=
ibwdt_notify_sys
,
.
next
=
NULL
,
.
priority
=
0
,
};
static
int
__init
ibwdt_init
(
void
)
...
...
drivers/char/watchdog/machzwd.c
View file @
9e533ec6
...
...
@@ -447,8 +447,6 @@ static struct miscdevice zf_miscdev = {
*/
static
struct
notifier_block
zf_notifier
=
{
.
notifier_call
=
zf_notify_sys
,
.
next
=
NULL
,
.
priority
=
0
,
};
static
void
__init
zf_show_action
(
int
act
)
...
...
drivers/char/watchdog/sbc60xxwdt.c
View file @
9e533ec6
...
...
@@ -322,8 +322,6 @@ static int wdt_notify_sys(struct notifier_block *this, unsigned long code,
static
struct
notifier_block
wdt_notifier
=
{
.
notifier_call
=
wdt_notify_sys
,
.
next
=
NULL
,
.
priority
=
0
,
};
static
void
__exit
sbc60xxwdt_unload
(
void
)
...
...
drivers/char/watchdog/sc520_wdt.c
View file @
9e533ec6
...
...
@@ -354,8 +354,6 @@ static int wdt_notify_sys(struct notifier_block *this, unsigned long code,
static
struct
notifier_block
wdt_notifier
=
{
.
notifier_call
=
wdt_notify_sys
,
.
next
=
NULL
,
.
priority
=
0
,
};
static
void
__exit
sc520_wdt_unload
(
void
)
...
...
drivers/char/watchdog/w83627hf_wdt.c
View file @
9e533ec6
...
...
@@ -257,8 +257,6 @@ static struct miscdevice wdt_miscdev = {
static
struct
notifier_block
wdt_notifier
=
{
.
notifier_call
=
wdt_notify_sys
,
.
next
=
NULL
,
.
priority
=
0
,
};
static
int
__init
...
...
drivers/char/watchdog/w83877f_wdt.c
View file @
9e533ec6
...
...
@@ -341,8 +341,6 @@ static int wdt_notify_sys(struct notifier_block *this, unsigned long code,
static
struct
notifier_block
wdt_notifier
=
{
.
notifier_call
=
wdt_notify_sys
,
.
next
=
NULL
,
.
priority
=
0
,
};
static
void
__exit
w83877f_wdt_unload
(
void
)
...
...
drivers/char/watchdog/wafer5823wdt.c
View file @
9e533ec6
...
...
@@ -252,8 +252,6 @@ static struct miscdevice wafwdt_miscdev = {
static
struct
notifier_block
wafwdt_notifier
=
{
.
notifier_call
=
wafwdt_notify_sys
,
.
next
=
NULL
,
.
priority
=
0
,
};
static
int
__init
wafwdt_init
(
void
)
...
...
drivers/char/watchdog/wdt.c
View file @
9e533ec6
...
...
@@ -459,8 +459,6 @@ static struct miscdevice temp_miscdev=
static
struct
notifier_block
wdt_notifier
=
{
.
notifier_call
=
wdt_notify_sys
,
.
next
=
NULL
,
.
priority
=
0
,
};
/**
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment