| To: | "David S. Miller" <davem@xxxxxxxxxx> |
|---|---|
| Subject: | [PATCH] (1/7) ipmr - C99 initializers |
| From: | Stephen Hemminger <shemminger@xxxxxxxx> |
| Date: | Wed, 25 Jun 2003 11:40:42 -0700 |
| Cc: | netdev@xxxxxxxxxxx |
| Organization: | Open Source Development Lab |
| Sender: | netdev-bounce@xxxxxxxxxxx |
Change notifier to C99 initialization
This one changes an initializer to C99 style.
diff -Nru a/net/ipv4/ipmr.c b/net/ipv4/ipmr.c
--- a/net/ipv4/ipmr.c Wed Jun 25 11:14:59 2003
+++ b/net/ipv4/ipmr.c Wed Jun 25 11:14:59 2003
@@ -1078,9 +1078,7 @@
static struct notifier_block ip_mr_notifier={
- ipmr_device_event,
- NULL,
- 0
+ .notifier_call = ipmr_device_event,
};
/*
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | [PATCH] (0/7) ipmr fixes, Stephen Hemminger |
|---|---|
| Next by Date: | [PATCH] (2/7) ipmr.c - make local stuff static, Stephen Hemminger |
| Previous by Thread: | [PATCH] (0/7) ipmr fixes, Stephen Hemminger |
| Next by Thread: | [PATCH] (2/7) ipmr.c - make local stuff static, Stephen Hemminger |
| Indexes: | [Date] [Thread] [Top] [All Lists] |