batman-adv: Prefix sysfs defines with BATADV_
Reported-by: Martin Hundebøll <martin@hundeboll.net> Signed-off-by: Sven Eckelmann <sven@narfation.org>
This commit is contained in:
committed by
Antonio Quartulli
parent
54590e4d4b
commit
036cbfeb6e
@@ -505,11 +505,11 @@ int batadv_sysfs_add_meshif(struct net_device *dev)
|
|||||||
struct bat_attribute **bat_attr;
|
struct bat_attribute **bat_attr;
|
||||||
int err;
|
int err;
|
||||||
|
|
||||||
bat_priv->mesh_obj = kobject_create_and_add(SYSFS_IF_MESH_SUBDIR,
|
bat_priv->mesh_obj = kobject_create_and_add(BATADV_SYSFS_IF_MESH_SUBDIR,
|
||||||
batif_kobject);
|
batif_kobject);
|
||||||
if (!bat_priv->mesh_obj) {
|
if (!bat_priv->mesh_obj) {
|
||||||
batadv_err(dev, "Can't add sysfs directory: %s/%s\n", dev->name,
|
batadv_err(dev, "Can't add sysfs directory: %s/%s\n", dev->name,
|
||||||
SYSFS_IF_MESH_SUBDIR);
|
BATADV_SYSFS_IF_MESH_SUBDIR);
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -518,7 +518,7 @@ int batadv_sysfs_add_meshif(struct net_device *dev)
|
|||||||
&((*bat_attr)->attr));
|
&((*bat_attr)->attr));
|
||||||
if (err) {
|
if (err) {
|
||||||
batadv_err(dev, "Can't add sysfs file: %s/%s/%s\n",
|
batadv_err(dev, "Can't add sysfs file: %s/%s/%s\n",
|
||||||
dev->name, SYSFS_IF_MESH_SUBDIR,
|
dev->name, BATADV_SYSFS_IF_MESH_SUBDIR,
|
||||||
((*bat_attr)->attr).name);
|
((*bat_attr)->attr).name);
|
||||||
goto rem_attr;
|
goto rem_attr;
|
||||||
}
|
}
|
||||||
@@ -673,12 +673,12 @@ int batadv_sysfs_add_hardif(struct kobject **hardif_obj, struct net_device *dev)
|
|||||||
struct bat_attribute **bat_attr;
|
struct bat_attribute **bat_attr;
|
||||||
int err;
|
int err;
|
||||||
|
|
||||||
*hardif_obj = kobject_create_and_add(SYSFS_IF_BAT_SUBDIR,
|
*hardif_obj = kobject_create_and_add(BATADV_SYSFS_IF_BAT_SUBDIR,
|
||||||
hardif_kobject);
|
hardif_kobject);
|
||||||
|
|
||||||
if (!*hardif_obj) {
|
if (!*hardif_obj) {
|
||||||
batadv_err(dev, "Can't add sysfs directory: %s/%s\n", dev->name,
|
batadv_err(dev, "Can't add sysfs directory: %s/%s\n", dev->name,
|
||||||
SYSFS_IF_BAT_SUBDIR);
|
BATADV_SYSFS_IF_BAT_SUBDIR);
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -686,7 +686,7 @@ int batadv_sysfs_add_hardif(struct kobject **hardif_obj, struct net_device *dev)
|
|||||||
err = sysfs_create_file(*hardif_obj, &((*bat_attr)->attr));
|
err = sysfs_create_file(*hardif_obj, &((*bat_attr)->attr));
|
||||||
if (err) {
|
if (err) {
|
||||||
batadv_err(dev, "Can't add sysfs file: %s/%s/%s\n",
|
batadv_err(dev, "Can't add sysfs file: %s/%s/%s\n",
|
||||||
dev->name, SYSFS_IF_BAT_SUBDIR,
|
dev->name, BATADV_SYSFS_IF_BAT_SUBDIR,
|
||||||
((*bat_attr)->attr).name);
|
((*bat_attr)->attr).name);
|
||||||
goto rem_attr;
|
goto rem_attr;
|
||||||
}
|
}
|
||||||
|
@@ -20,8 +20,8 @@
|
|||||||
#ifndef _NET_BATMAN_ADV_SYSFS_H_
|
#ifndef _NET_BATMAN_ADV_SYSFS_H_
|
||||||
#define _NET_BATMAN_ADV_SYSFS_H_
|
#define _NET_BATMAN_ADV_SYSFS_H_
|
||||||
|
|
||||||
#define SYSFS_IF_MESH_SUBDIR "mesh"
|
#define BATADV_SYSFS_IF_MESH_SUBDIR "mesh"
|
||||||
#define SYSFS_IF_BAT_SUBDIR "batman_adv"
|
#define BATADV_SYSFS_IF_BAT_SUBDIR "batman_adv"
|
||||||
|
|
||||||
struct bat_attribute {
|
struct bat_attribute {
|
||||||
struct attribute attr;
|
struct attribute attr;
|
||||||
|
Reference in New Issue
Block a user