Commit 78511edc authored by Linus Torvalds's avatar Linus Torvalds

Merge tag 'pm-5.6-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm

Pull power management fix from Rafael Wysocki:
 "Fix cpupower utility build failures with -fno-common enabled (Mike
  Gilbert)"

* tag 'pm-5.6-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm:
  cpupower: avoid multiple definition with gcc -fno-common
parents 5007928e bce74b1f
...@@ -82,7 +82,7 @@ static struct pci_access *pci_acc; ...@@ -82,7 +82,7 @@ static struct pci_access *pci_acc;
static struct pci_dev *amd_fam14h_pci_dev; static struct pci_dev *amd_fam14h_pci_dev;
static int nbp1_entered; static int nbp1_entered;
struct timespec start_time; static struct timespec start_time;
static unsigned long long timediff; static unsigned long long timediff;
#ifdef DEBUG #ifdef DEBUG
......
...@@ -19,7 +19,7 @@ struct cpuidle_monitor cpuidle_sysfs_monitor; ...@@ -19,7 +19,7 @@ struct cpuidle_monitor cpuidle_sysfs_monitor;
static unsigned long long **previous_count; static unsigned long long **previous_count;
static unsigned long long **current_count; static unsigned long long **current_count;
struct timespec start_time; static struct timespec start_time;
static unsigned long long timediff; static unsigned long long timediff;
static int cpuidle_get_count_percent(unsigned int id, double *percent, static int cpuidle_get_count_percent(unsigned int id, double *percent,
......
...@@ -27,6 +27,8 @@ struct cpuidle_monitor *all_monitors[] = { ...@@ -27,6 +27,8 @@ struct cpuidle_monitor *all_monitors[] = {
0 0
}; };
int cpu_count;
static struct cpuidle_monitor *monitors[MONITORS_MAX]; static struct cpuidle_monitor *monitors[MONITORS_MAX];
static unsigned int avail_monitors; static unsigned int avail_monitors;
......
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
#endif #endif
#define CSTATE_DESC_LEN 60 #define CSTATE_DESC_LEN 60
int cpu_count; extern int cpu_count;
/* Hard to define the right names ...: */ /* Hard to define the right names ...: */
enum power_range_e { enum power_range_e {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment