mirror of
				git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
				synced 2025-10-31 08:44:41 +00:00 
			
		
		
		
	[SCTP]: Fix build warnings with IPV6 disabled.
Introduced by 270637abff
("[SCTP]: Fix a race between module load and protosw access")
Reported by Gabriel C:
In file included from net/sctp/sm_statetable.c:50:
include/net/sctp/sctp.h: In function 'sctp_v6_pf_init':
include/net/sctp/sctp.h:392: warning: 'return' with a value, in function returning void
In file included from net/sctp/sm_statefuns.c:62:
include/net/sctp/sctp.h: In function 'sctp_v6_pf_init':
include/net/sctp/sctp.h:392: warning: 'return' with a value, in function returning void
 ...
Signed-off-by: David S. Miller <davem@davemloft.net>
			
			
This commit is contained in:
		
							parent
							
								
									12b101555f
								
							
						
					
					
						commit
						1233823b08
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		|  | @ -389,7 +389,7 @@ void sctp_v6_del_protocol(void); | |||
| 
 | ||||
| #else /* #ifdef defined(CONFIG_IPV6) */ | ||||
| 
 | ||||
| static inline void sctp_v6_pf_init(void) { return 0; } | ||||
| static inline void sctp_v6_pf_init(void) { return; } | ||||
| static inline void sctp_v6_pf_exit(void) { return; } | ||||
| static inline int sctp_v6_protosw_init(void) { return 0; } | ||||
| static inline void sctp_v6_protosw_exit(void) { return; } | ||||
|  |  | |||
		Loading…
	
	Add table
		
		Reference in a new issue
	
	 David S. Miller
						David S. Miller