Commit 91e83cb0 authored by Christophe Favergeon's avatar Christophe Favergeon
Browse files

Corrected issue #133 : missing const qualifier

parent 600dea7f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -162,7 +162,7 @@ extern "C"
   *
   */
  float32_t arm_linear_interp_f32(
  arm_linear_interp_instance_f32 * S,
  const arm_linear_interp_instance_f32 * S,
  float32_t x);

   /**
+1 −1
Original line number Diff line number Diff line
@@ -70,7 +70,7 @@ typedef struct
   * @return y processed output sample.
   */
  float16_t arm_linear_interp_f16(
  arm_linear_interp_instance_f16 * S,
  const arm_linear_interp_instance_f16 * S,
  float16_t x);

    /**
+1 −1
Original line number Diff line number Diff line
@@ -49,7 +49,7 @@
   *
   */
  float16_t arm_linear_interp_f16(
  arm_linear_interp_instance_f16 * S,
  const arm_linear_interp_instance_f16 * S,
  float16_t x)
  {
    float16_t y;
+1 −1
Original line number Diff line number Diff line
@@ -77,7 +77,7 @@
   *
   */
  float32_t arm_linear_interp_f32(
  arm_linear_interp_instance_f32 * S,
  const arm_linear_interp_instance_f32 * S,
  float32_t x)
  {
    float32_t y;
+4 −5
Original line number Diff line number Diff line
@@ -40,21 +40,20 @@ layer:
      for-context: 
        - +VHT-Corstone-300 
        - +VHT-Corstone-300-NOMVE
        - +VHT-Corstone-310
    - component: ARM::Native Driver:DMA350 Remap
      for-context: 
        - +VHT-Corstone-310
    - component: ARM::Native Driver:Timeout
    - component: ARM::Native Driver:SysCounter
      for-context: 
        - +VHT-Corstone-300 
        - +VHT-Corstone-300-NOMVE
        - +VHT-Corstone-310
    - component: ARM::Native Driver:SysCounter
    - component: ARM::Native Driver:SysTimer
      for-context: 
        - +VHT-Corstone-300 
        - +VHT-Corstone-300-NOMVE
        - +VHT-Corstone-310
    - component: ARM::Native Driver:SysTimer
    - component: ARM::Native Driver:Timeout
      for-context: 
        - +VHT-Corstone-300 
        - +VHT-Corstone-300-NOMVE
Loading