Commit 529f420f authored by Duy Nguyen's avatar Duy Nguyen Committed by Benjamin Cabé
Browse files

boards: renesas: Fix incorrect partnumber for RSK-RX130



The part number of SOC using on RSK-RX130 is R5F51308AXFP
This commit fix the mistake

Signed-off-by: default avatarDuy Nguyen <duy.nguyen.xa@renesas.com>
parent 1fe28da9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2,4 +2,4 @@
# SPDX-License-Identifier: Apache-2.0

config BOARD_RSK_RX130
	select SOC_R5F513083XFB
	select SOC_R5F51308AXFP
+1 −1
Original line number Diff line number Diff line
@@ -10,4 +10,4 @@ board:
      - name: 512kb
      - name: 128kb
  socs:
    - name: r5f513083xfb
    - name: r5f51308axfp
+1 −1
Original line number Diff line number Diff line
@@ -6,7 +6,7 @@

/dts-v1/;

#include <renesas/r5f513083xfb.dtsi>
#include <renesas/r5f51308axfp.dtsi>
#include <dt-bindings/gpio/gpio.h>
#include "rsk_rx130_512kb-pinctrl.dtsi"
#include <zephyr/dt-bindings/input/input-event-codes.h>
+3 −3
Original line number Diff line number Diff line
@@ -7,14 +7,14 @@ config SOC_SERIES_RX130
	help
	  Renesas RX130 series

config SOC_R5F513083XFB
config SOC_R5F51308AXFP
	bool
	select SOC_SERIES_RX130
	help
	  R5F513083XFB
	  R5F51308AXFP

config SOC_SERIES
	default "rx130" if SOC_SERIES_RX130

config SOC
	default "r5f513083xfb" if SOC_R5F513083XFB
	default "r5f51308axfp" if SOC_R5F51308AXFP
Loading