summaryrefslogtreecommitdiff
path: root/corking.h
blob: fb4483cbea5fe9faa70276523a3797a1bcfa3d11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef CORKING_H
#define CORKING_H

#include <stdbool.h>

extern void set_tcp_cork(int fd);
extern void set_tcp_uncork(int fd);
extern void set_udp_cork(int fd);
extern void set_udp_uncork(int fd);
extern void set_sock_cork(int fd, bool is_udp);
extern void set_sock_uncork(int fd, bool is_udp);

#endif /* CORKING_H */
option value='40'>40space:mode:
authorJohan Hovold <johan@hovoldconsulting.com>2016-08-19 09:42:21 +0200
committerGreg Kroah-Hartman <gregkh@google.com>2016-08-19 09:57:28 +0200
commitbe67e7e54bb1c22e396285bd7b4721786cba1209 (patch)
tree2aa9e291d7f8e05d1c906b476f0a10fb7609cbe7 /drivers/staging
parent46bb647b1ca0f136b991151e3dd365b751572f40 (diff)
greybus: svc: drop unnecessary symbol exports
The svc functions are only supposed to be called by core and should not be exported. Most of these functions should never have been exported in the first place, while a few no longer needs to be (e.g. since core gained support for offloaded connections). The only remaining exception is gb_svc_intf_set_power_mode() which is needed by the camera driver until proper link management is in place. Signed-off-by: Johan Hovold <johan@hovoldconsulting.com> Signed-off-by: Greg Kroah-Hartman <gregkh@google.com>
Diffstat (limited to 'drivers/staging')
-rw-r--r--drivers/staging/greybus/svc.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/drivers/staging/greybus/svc.c b/drivers/staging/greybus/svc.c