/* * netsniff-ng - the packet sniffing beast * Copyright 2011 Daniel Borkmann. * Subject to the GPL, version 2. */ #ifndef CPUSCHED_H #define CPUSCHED_H extern void init_cpusched(unsigned int cpus); extern unsigned int socket_to_cpu(int fd); extern unsigned int register_socket(int fd); extern void unregister_socket(int fd); extern void destroy_cpusched(void); #endif /* CPUSCHED_H */ ds-private-remove' type='application/atom+xml'/>
summaryrefslogtreecommitdiff
path: root/Documentation
diff options
context:
space:
mode:
authorJavier Martinez Canillas <javier@osg.samsung.com>2016-04-25 19:30:39 -0400
committerMark Brown <broonie@kernel.org>2016-04-26 12:07:43 +0100
commitde06f22f717b30641229036439b804ae79a7ad4d (patch)
tree20f7a648cc512962f534ce3cc11179d41419d371 /Documentation
parentf55532a0c0b8bb6148f4e07853b876ef73bc69ca (diff)
ASoC: cs42l56: Use IS_ENABLED() instead of checking for built-in or module
The IS_ENABLED() macro checks if a Kconfig symbol has been enabled either built-in or as a module, use that macro instead of open coding the same. Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com> Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'Documentation')