Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 270129
b: refs/heads/master
c: a9356a0
h: refs/heads/master
i:
  270127: efcbb67
v: v3
  • Loading branch information
Mark Rutland authored and Will Deacon committed Aug 31, 2011
1 parent ba5ba83 commit 47356a9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 03b7898d300de62078cc130fbc83b84b1d1e0f8d
refs/heads/master: a9356a04fab912289b886824cb4b1d461987a910
10 changes: 6 additions & 4 deletions trunk/arch/arm/kernel/perf_event.c
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,6 @@
#include <asm/pmu.h>
#include <asm/stacktrace.h>

static struct platform_device *pmu_device;

/*
* Hardware lock to serialize accesses to PMU registers. Needed for the
* read/modify/write sequences.
Expand Down Expand Up @@ -85,6 +83,7 @@ struct arm_pmu {
atomic_t active_events;
struct mutex reserve_mutex;
u64 max_period;
struct platform_device *plat_device;
};

/* Set at runtime when we know what CPU type we are. */
Expand Down Expand Up @@ -374,7 +373,8 @@ validate_group(struct perf_event *event)

static irqreturn_t armpmu_platform_irq(int irq, void *dev)
{
struct arm_pmu_platdata *plat = dev_get_platdata(&pmu_device->dev);
struct platform_device *plat_device = armpmu->plat_device;
struct arm_pmu_platdata *plat = dev_get_platdata(&plat_device->dev);

return plat->handle_irq(irq, dev, armpmu->handle_irq);
}
Expand All @@ -383,6 +383,7 @@ static void
armpmu_release_hardware(void)
{
int i, irq, irqs;
struct platform_device *pmu_device = armpmu->plat_device;

irqs = min(pmu_device->num_resources, num_possible_cpus());

Expand All @@ -404,6 +405,7 @@ armpmu_reserve_hardware(void)
struct arm_pmu_platdata *plat;
irq_handler_t handle_irq;
int i, err, irq, irqs;
struct platform_device *pmu_device = armpmu->plat_device;

err = reserve_pmu(ARM_PMU_DEVICE_CPU);
if (err) {
Expand Down Expand Up @@ -657,7 +659,7 @@ static struct platform_device_id armpmu_plat_device_ids[] = {

static int __devinit armpmu_device_probe(struct platform_device *pdev)
{
pmu_device = pdev;
armpmu->plat_device = pdev;
return 0;
}

Expand Down

0 comments on commit 47356a9

Please sign in to comment.