Skip to content
Snippets Groups Projects
Commit a6616efb authored by Nobuhiro Iwamatsu's avatar Nobuhiro Iwamatsu Committed by Joe Hershberger
Browse files

net/sh-ether: Fix build by removing ECSIPR_BRCRXIP and other


When support sh7734 of sh-ether, ECSIPR_BRCRXIP and other were removed.
Therefore SH7757 and SH7724 can not build. This revise this probelem.

Signed-off-by: default avatarNobuhiro Iwamatsu <iwamatsu@nigauri.org>
Tested-by: default avatarYoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
parent 211e4754
No related branches found
No related tags found
No related merge requests found
...@@ -452,17 +452,16 @@ enum ECSR_STATUS_BIT { ...@@ -452,17 +452,16 @@ enum ECSR_STATUS_BIT {
/* ECSIPR */ /* ECSIPR */
enum ECSIPR_STATUS_MASK_BIT { enum ECSIPR_STATUS_MASK_BIT {
#if defined(CONFIG_CPU_SH7724) #if defined(CONFIG_CPU_SH7724) || defined(CONFIG_CPU_SH7757)
ECSIPR_BRCRXIP = 0x20,
ECSIPR_PSRTOIP = 0x10, ECSIPR_PSRTOIP = 0x10,
ECSIPR_LCHNGIP = 0x04,
ECSIPR_ICDIP = 0x01,
#elif defined(CONFIG_CPU_SH7763) || defined(CONFIG_CPU_SH7734) #elif defined(CONFIG_CPU_SH7763) || defined(CONFIG_CPU_SH7734)
ECSIPR_PSRTOIP = 0x10, ECSIPR_PSRTOIP = 0x10,
ECSIPR_PHYIP = 0x08, ECSIPR_PHYIP = 0x08,
#endif
ECSIPR_LCHNGIP = 0x04, ECSIPR_LCHNGIP = 0x04,
ECSIPR_MPDIP = 0x02, ECSIPR_MPDIP = 0x02,
ECSIPR_ICDIP = 0x01, ECSIPR_ICDIP = 0x01,
#endif
}; };
#if defined(CONFIG_CPU_SH7763) || defined(CONFIG_CPU_SH7734) #if defined(CONFIG_CPU_SH7763) || defined(CONFIG_CPU_SH7734)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment