diff options
| -rw-r--r-- | net/ipv4/ipconfig.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/net/ipv4/ipconfig.c b/net/ipv4/ipconfig.c index 0f42d1c1f690..89dee4346f60 100644 --- a/net/ipv4/ipconfig.c +++ b/net/ipv4/ipconfig.c | |||
| @@ -412,12 +412,12 @@ static struct packet_type rarp_packet_type __initdata = { | |||
| 412 | .func = ic_rarp_recv, | 412 | .func = ic_rarp_recv, |
| 413 | }; | 413 | }; |
| 414 | 414 | ||
| 415 | static inline void ic_rarp_init(void) | 415 | static inline void __init ic_rarp_init(void) |
| 416 | { | 416 | { |
| 417 | dev_add_pack(&rarp_packet_type); | 417 | dev_add_pack(&rarp_packet_type); |
| 418 | } | 418 | } |
| 419 | 419 | ||
| 420 | static inline void ic_rarp_cleanup(void) | 420 | static inline void __init ic_rarp_cleanup(void) |
| 421 | { | 421 | { |
| 422 | dev_remove_pack(&rarp_packet_type); | 422 | dev_remove_pack(&rarp_packet_type); |
| 423 | } | 423 | } |
| @@ -682,7 +682,7 @@ static void __init ic_bootp_init_ext(u8 *e) | |||
| 682 | /* | 682 | /* |
| 683 | * Initialize the DHCP/BOOTP mechanism. | 683 | * Initialize the DHCP/BOOTP mechanism. |
| 684 | */ | 684 | */ |
| 685 | static inline void ic_bootp_init(void) | 685 | static inline void __init ic_bootp_init(void) |
| 686 | { | 686 | { |
| 687 | int i; | 687 | int i; |
| 688 | 688 | ||
| @@ -696,7 +696,7 @@ static inline void ic_bootp_init(void) | |||
| 696 | /* | 696 | /* |
| 697 | * DHCP/BOOTP cleanup. | 697 | * DHCP/BOOTP cleanup. |
| 698 | */ | 698 | */ |
| 699 | static inline void ic_bootp_cleanup(void) | 699 | static inline void __init ic_bootp_cleanup(void) |
| 700 | { | 700 | { |
| 701 | dev_remove_pack(&bootp_packet_type); | 701 | dev_remove_pack(&bootp_packet_type); |
| 702 | } | 702 | } |
