/* * Copyright 2012 Steffen Trumtrar * * display timings of helpers * * This file is released under the GPLv2 */ #ifndef __LINUX_OF_DISPLAY_TIMING_H #define __LINUX_OF_DISPLAY_TIMING_H struct device_node; struct display_timing; struct display_timings; #define OF_USE_NATIVE_MODE -1 #ifdef CONFIG_OF int of_get_display_timing(const struct device_node *np, const char *name, struct display_timing *dt); struct display_timings *of_get_display_timings(const struct device_node *np); int of_display_timings_exist(const struct device_node *np); #else static inline int of_get_display_timing(const struct device_node *np, const char *name, struct display_timing *dt) { return -ENOSYS; } static inline struct display_timings * of_get_display_timings(const struct device_node *np) { return NULL; } static inline int of_display_timings_exist(const struct device_node *np) { return -ENOSYS; } #endif #endif n' name='showmsg' value='1'/> net-next plumbingsTobias Klauser
summaryrefslogtreecommitdiff
path: root/net/sched/Kconfig
AgeCommit message (Collapse)AuthorFilesLines
2017-02-03net/sched: act_ife: Change to use ife moduleYotam Gigi1-0/+1
Use the encode/decode functionality from the ife module instead of using implementation inside the act_ife. Reviewed-by: Jiri Pirko <jiri@mellanox.com> Signed-off-by: Yotam Gigi <yotamg@mellanox.com> Signed-off-by: Jamal Hadi Salim <jhs@mojatatu.com> Signed-off-by: Roman Mashak <mrv@mojatatu.com> Signed-off-by: David S. Miller <davem@davemloft.net>