Skip to content

Commit

Permalink
Merge branches 'pm-avs', 'pm-clk' and 'powercap'
Browse files Browse the repository at this point in the history
* pm-avs:
  PM / AVS: rockchip-io: Fix module autoload for OF platform driver

* pm-clk:
  PM / clk: Fix broken build due to non-matching code and header #ifdefs

* powercap:
  powercap / RAPL: Enable Broxton RAPL support
  • Loading branch information
Rafael J. Wysocki committed Nov 1, 2015
4 parents 394f716 + fa743d9 + a617561 + 89e7b25 commit 1ab6846
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
6 changes: 3 additions & 3 deletions drivers/base/power/clock_ops.c
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
#include <linux/err.h>
#include <linux/pm_runtime.h>

#ifdef CONFIG_PM
#ifdef CONFIG_PM_CLK

enum pce_status {
PCE_STATUS_NONE = 0,
Expand Down Expand Up @@ -404,7 +404,7 @@ int pm_clk_runtime_resume(struct device *dev)
return pm_generic_runtime_resume(dev);
}

#else /* !CONFIG_PM */
#else /* !CONFIG_PM_CLK */

/**
* enable_clock - Enable a device clock.
Expand Down Expand Up @@ -484,7 +484,7 @@ static int pm_clk_notify(struct notifier_block *nb,
return 0;
}

#endif /* !CONFIG_PM */
#endif /* !CONFIG_PM_CLK */

/**
* pm_clk_add_notifier - Add bus type notifier for power management clocks.
Expand Down
1 change: 1 addition & 0 deletions drivers/power/avs/rockchip-io-domain.c
Original file line number Diff line number Diff line change
Expand Up @@ -271,6 +271,7 @@ static const struct of_device_id rockchip_iodomain_match[] = {
},
{ /* sentinel */ },
};
MODULE_DEVICE_TABLE(of, rockchip_iodomain_match);

static int rockchip_iodomain_probe(struct platform_device *pdev)
{
Expand Down
1 change: 1 addition & 0 deletions drivers/powercap/intel_rapl.c
Original file line number Diff line number Diff line change
Expand Up @@ -1102,6 +1102,7 @@ static const struct x86_cpu_id rapl_ids[] __initconst = {
RAPL_CPU(0x4A, rapl_defaults_tng),/* Tangier */
RAPL_CPU(0x56, rapl_defaults_core),/* Future Xeon */
RAPL_CPU(0x5A, rapl_defaults_ann),/* Annidale */
RAPL_CPU(0X5C, rapl_defaults_core),/* Broxton */
RAPL_CPU(0x5E, rapl_defaults_core),/* Skylake-H/S */
RAPL_CPU(0x57, rapl_defaults_hsw_server),/* Knights Landing */
{}
Expand Down

0 comments on commit 1ab6846

Please sign in to comment.