File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
recipes-kernel/kernel-modules/x8h7 Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -783,8 +783,8 @@ static const struct net_device_ops x8h7_can_netdev_ops = {
783
783
784
784
/**
785
785
*/
786
- static int x8h7_can_filter (struct x8h7_can_priv * priv ,
787
- const char * buf , int type )
786
+ static int x8h7_can_config_filter (struct x8h7_can_priv * priv ,
787
+ const char * buf , int type )
788
788
{
789
789
u32 idx ;
790
790
u32 id ;
@@ -859,7 +859,7 @@ static ssize_t x8h7_can_sf_store(struct device *dev,
859
859
struct x8h7_can_priv * priv = netdev_priv (to_net_dev (dev ));
860
860
int ret ;
861
861
862
- ret = x8h7_can_filter (priv , buf , 0 );
862
+ ret = x8h7_can_config_filter (priv , buf , 0 );
863
863
if (ret ) {
864
864
DBG_ERROR ("set filter\n" );
865
865
return -1 ;
@@ -899,7 +899,7 @@ static ssize_t x8h7_can_ef_store(struct device *dev,
899
899
struct x8h7_can_priv * priv = netdev_priv (to_net_dev (dev ));
900
900
int ret ;
901
901
902
- ret = x8h7_can_filter (priv , buf , 1 );
902
+ ret = x8h7_can_config_filter (priv , buf , 1 );
903
903
if (ret ) {
904
904
DBG_ERROR ("set filter\n" );
905
905
return -1 ;
You can’t perform that action at this time.
0 commit comments