aboutsummaryrefslogtreecommitdiff
path: root/drivers/net/wireless
diff options
context:
space:
mode:
authorJohn W. Linville <linville@tuxdriver.com>2007-02-27 14:39:04 -0500
committerJeff Garzik <jeff@garzik.org>2007-04-28 11:00:55 -0400
commitb3f1b8cf11e412367a35045a60abbbd2ada5f75d (patch)
tree4742d508e68ada3ded07bc1e1cd33ba1d4fdeaa5 /drivers/net/wireless
parentebb4e07e351e456216681f9bcf6bc4a5f0f7f55b (diff)
[PATCH] libertas: fix build breakage from netdev class_device -> device
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless')
-rw-r--r--drivers/net/wireless/libertas/main.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/drivers/net/wireless/libertas/main.c b/drivers/net/wireless/libertas/main.c
index 49704653011..dcbf102a057 100644
--- a/drivers/net/wireless/libertas/main.c
+++ b/drivers/net/wireless/libertas/main.c
@@ -186,12 +186,12 @@ static u8 *default_fw_name = "usb8388.bin";
/**
* Attributes exported through sysfs
*/
-#define to_net_dev(class) container_of(class, struct net_device, class_dev)
/**
* @brief Get function for sysfs attribute libertas_mpp
*/
-static ssize_t libertas_mpp_get(struct class_device * dev, char * buf) {
+static ssize_t libertas_mpp_get(struct device * dev,
+ struct device_attribute *attr, char * buf) {
struct cmd_ds_mesh_access mesh_access;
memset(&mesh_access, 0, sizeof(mesh_access));
@@ -206,8 +206,8 @@ static ssize_t libertas_mpp_get(struct class_device * dev, char * buf) {
/**
* @brief Set function for sysfs attribute libertas_mpp
*/
-static ssize_t libertas_mpp_set(struct class_device * dev, const char * buf,
- size_t count) {
+static ssize_t libertas_mpp_set(struct device * dev,
+ struct device_attribute *attr, const char * buf, size_t count) {
struct cmd_ds_mesh_access mesh_access;
@@ -224,7 +224,7 @@ static ssize_t libertas_mpp_set(struct class_device * dev, const char * buf,
* libertas_mpp attribute to be exported per mshX interface
* through sysfs (/sys/class/net/mshX/libertas-mpp)
*/
-static CLASS_DEVICE_ATTR(libertas_mpp, 0644, libertas_mpp_get,
+static DEVICE_ATTR(libertas_mpp, 0644, libertas_mpp_get,
libertas_mpp_set );
/**
@@ -998,14 +998,14 @@ wlan_private *wlan_add_card(void *card)
if (!(wlan_pm_dev = pm_register(PM_UNKNOWN_DEV, 0, wlan_pm_callback)))
lbs_pr_alert( "failed to register PM callback\n");
#endif
- if (class_device_create_file(&(mesh_dev->class_dev), &class_device_attr_libertas_mpp))
+ if (device_create_file(&(mesh_dev->dev), &dev_attr_libertas_mpp))
goto err_create_file;
LEAVE();
return priv;
err_create_file:
- class_device_remove_file(&(mesh_dev->class_dev), &class_device_attr_libertas_mpp);
+ device_remove_file(&(mesh_dev->dev), &dev_attr_libertas_mpp);
err_init_fw:
libertas_sbi_unregister_dev(priv);
err_registerdev:
@@ -1069,7 +1069,7 @@ int wlan_remove_card(void *card)
wake_pending_cmdnodes(priv);
- class_device_remove_file(&(mesh_dev->class_dev), &class_device_attr_libertas_mpp);
+ device_remove_file(&(mesh_dev->dev), &dev_attr_libertas_mpp);
unregister_netdev(mesh_dev);
unregister_netdev(dev);