summaryrefslogtreecommitdiffstats
path: root/bsps/arm/realview-pbx-a9/start/bspsmp.c
blob: 21ea37e046d6834fc84945c23b08c072436c17c2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
 * Copyright (c) 2014 embedded brains GmbH.  All rights reserved.
 *
 * The license and distribution terms for this file may be
 * found in the file LICENSE in this distribution or at
 * http://www.rtems.org/license/LICENSE.
 */

#include <rtems/score/smpimpl.h>

bool _CPU_SMP_Start_processor(uint32_t cpu_index)
{
  (void) cpu_index;

  /* Nothing to do */

  return true;
}