#ifndef STR_H #define STR_H #include "built_in.h" extern size_t strlcpy(char *dest, const char *src, size_t size); extern int slprintf(char *dst, size_t size, const char *fmt, ...) __check_format_printf(3, 4); extern int slprintf_nocheck(char *dst, size_t size, const char *fmt, ...); extern char *strtrim_right(char *p, char c); extern noinline void *xmemset(void *s, int c, size_t n); #endif /* STR_H */ x/net-next.git' title='net-next.git Git repository'/>
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSara Sharon <sara.sharon@intel.com>2016-06-29 12:23:06 +0300
committerLuca Coelho <luciano.coelho@intel.com>2016-08-30 14:16:43 +0300
commit76f8c0e17edc6eba43f84952e5a87c7f50f69370 (patch)
tree1f117a04619d8cd7a401e96b4a094dacc4c6d475
parentd6a2c5c78dcbbbe9dc20ff6e126b83f088cd0501 (diff)
iwlwifi: pcie: remove dead code
If device family is 8000 then iwl_pcie_load_cpu_sections() won't be called at all (iwl_pcie_load_cpu_sections_8000() is called in that case) so this piece of code never gets called. Signed-off-by: Sara Sharon <sara.sharon@intel.com> Signed-off-by: Luca Coelho <luciano.coelho@intel.com>