diff options
author | Paul Gortmaker <paul.gortmaker@windriver.com> | 2014-01-10 09:50:08 -0500 |
---|---|---|
committer | Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | 2014-01-10 10:44:43 -0500 |
commit | 0db6991dd233396da766076caef71f36b4f96c21 (patch) | |
tree | 18b11328d83826d13b6d5986cbc243414e9ed7f4 /drivers/xen | |
parent | b1a3b1c8a8d963424c4699efa64dd8986b2f76d7 (diff) |
xen: delete new instances of __cpuinit usage
Commit 1fe565517b57676884349dccfd6ce853ec338636 ("xen/events: use
the FIFO-based ABI if available") added new instances of __cpuinit
macro usage.
We removed this a couple versions ago; we now want to remove
the compat no-op stubs. Introducing new users is not what
we want to see at this point in time, as it will break once
the stubs are gone.
Cc: David Vrabel <david.vrabel@citrix.com>
Cc: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Cc: Boris Ostrovsky <boris.ostrovsky@oracle.com>
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Diffstat (limited to 'drivers/xen')
-rw-r--r-- | drivers/xen/events/events_fifo.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/xen/events/events_fifo.c b/drivers/xen/events/events_fifo.c index 5b2c039f16c5..1de2a191b395 100644 --- a/drivers/xen/events/events_fifo.c +++ b/drivers/xen/events/events_fifo.c | |||
@@ -359,7 +359,7 @@ static const struct evtchn_ops evtchn_ops_fifo = { | |||
359 | .resume = evtchn_fifo_resume, | 359 | .resume = evtchn_fifo_resume, |
360 | }; | 360 | }; |
361 | 361 | ||
362 | static int __cpuinit evtchn_fifo_init_control_block(unsigned cpu) | 362 | static int evtchn_fifo_init_control_block(unsigned cpu) |
363 | { | 363 | { |
364 | struct page *control_block = NULL; | 364 | struct page *control_block = NULL; |
365 | struct evtchn_init_control init_control; | 365 | struct evtchn_init_control init_control; |
@@ -386,7 +386,7 @@ static int __cpuinit evtchn_fifo_init_control_block(unsigned cpu) | |||
386 | return ret; | 386 | return ret; |
387 | } | 387 | } |
388 | 388 | ||
389 | static int __cpuinit evtchn_fifo_cpu_notification(struct notifier_block *self, | 389 | static int evtchn_fifo_cpu_notification(struct notifier_block *self, |
390 | unsigned long action, | 390 | unsigned long action, |
391 | void *hcpu) | 391 | void *hcpu) |
392 | { | 392 | { |
@@ -404,7 +404,7 @@ static int __cpuinit evtchn_fifo_cpu_notification(struct notifier_block *self, | |||
404 | return ret < 0 ? NOTIFY_BAD : NOTIFY_OK; | 404 | return ret < 0 ? NOTIFY_BAD : NOTIFY_OK; |
405 | } | 405 | } |
406 | 406 | ||
407 | static struct notifier_block evtchn_fifo_cpu_notifier __cpuinitdata = { | 407 | static struct notifier_block evtchn_fifo_cpu_notifier = { |
408 | .notifier_call = evtchn_fifo_cpu_notification, | 408 | .notifier_call = evtchn_fifo_cpu_notification, |
409 | }; | 409 | }; |
410 | 410 | ||