/** * debug.h - Designware USB2 DRD controller debug header * * Copyright (C) 2015 Intel Corporation * Mian Yousaf Kaukab * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 of * the License as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. */ #include "core.h" #ifdef CONFIG_DEBUG_FS extern int dwc2_debugfs_init(struct dwc2_hsotg *); extern void dwc2_debugfs_exit(struct dwc2_hsotg *); #else static inline int dwc2_debugfs_init(struct dwc2_hsotg *hsotg) { return 0; } static inline void dwc2_debugfs_exit(struct dwc2_hsotg *hsotg) { } #endif ' value='6eac0e817aee2518a96b5ce9d02b904e0667f370'/> net-next plumbingsTobias Klauser
summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorEmmanuel Grumbach <emmanuel.grumbach@intel.com>2017-01-07 23:03:40 +0200
committerLuca Coelho <luciano.coelho@intel.com>2017-02-08 17:54:20 +0200
commit6eac0e817aee2518a96b5ce9d02b904e0667f370 (patch)
treee53897a589015ff16ccd15b03a9f49306b434fbf /drivers
parent04fa3e680b4dd2fdd11d0152fb9b6067e7aac140 (diff)
iwlwifi: make RTPM depend on EXPERT
Enabling the RTPM Kconfig option can be fairly risky. Runtime PM must be validated against a specific platform before it can be safely enabled. Hence, it makes no sense for distros and other big OS vendors to enable it since they ship code to various systems and unknown platform. Make sure that this is hinted properly by making the IWLWIFI_PCIE_RTPM Kconfig option depend on EXPERT. Bugzilla: https://bugzilla.kernel.org/show_bug.cgi?id=172411 Signed-off-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com> Signed-off-by: Luca Coelho <luciano.coelho@intel.com>
Diffstat (limited to 'drivers')