summaryrefslogtreecommitdiff
path: root/tstamping.h
blob: ccc642e32c20c75b8e722222003081aa11c5a9cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef TSTAMPING_H
#define TSTAMPING_H

#include "config.h"

#ifdef HAVE_HARDWARE_TIMESTAMPING
extern int set_sockopt_hwtimestamp(int sock, const char *dev);
#else
static inline int set_sockopt_hwtimestamp(int sock, const char *dev)
{
	return -1;
}
#endif

#endif /* TSTAMPING_H */
class='label'>mode:
authorDavid Howells <dhowells@redhat.com>2016-04-04 14:00:40 +0100
committerDavid Howells <dhowells@redhat.com>2016-07-06 10:49:35 +0100
commit7877a4a4bdf0d782276f1cba868878aee77718ee (patch)
treed7bbda493ebfda88069805ac2b19a21e3ef5e771 /net/rxrpc/Makefile
parentc6d2b8d764f5edd79f708bdc49d1176072ee77a1 (diff)
rxrpc: Split service connection code out into its own file
Split the service-specific connection code out into into its own file. The client-specific code has already been split out. This will leave just the common code in the original file. Signed-off-by: David Howells <dhowells@redhat.com>
Diffstat (limited to 'net/rxrpc/Makefile')