|
@@ -3256,7 +3256,7 @@ static ssize_t ehea_probe_port(struct device *dev,
|
|
|
struct device_attribute *attr,
|
|
|
const char *buf, size_t count)
|
|
|
{
|
|
|
- struct ehea_adapter *adapter = dev->driver_data;
|
|
|
+ struct ehea_adapter *adapter = dev_get_drvdata(dev);
|
|
|
struct ehea_port *port;
|
|
|
struct device_node *eth_dn = NULL;
|
|
|
int i;
|
|
@@ -3311,7 +3311,7 @@ static ssize_t ehea_remove_port(struct device *dev,
|
|
|
struct device_attribute *attr,
|
|
|
const char *buf, size_t count)
|
|
|
{
|
|
|
- struct ehea_adapter *adapter = dev->driver_data;
|
|
|
+ struct ehea_adapter *adapter = dev_get_drvdata(dev);
|
|
|
struct ehea_port *port;
|
|
|
int i;
|
|
|
u32 logical_port_id;
|
|
@@ -3399,7 +3399,7 @@ static int __devinit ehea_probe_adapter(struct of_device *dev,
|
|
|
|
|
|
adapter->pd = EHEA_PD_ID;
|
|
|
|
|
|
- dev->dev.driver_data = adapter;
|
|
|
+ dev_set_drvdata(&dev->dev, adapter);
|
|
|
|
|
|
|
|
|
/* initialize adapter and ports */
|
|
@@ -3463,7 +3463,7 @@ out:
|
|
|
|
|
|
static int __devexit ehea_remove(struct of_device *dev)
|
|
|
{
|
|
|
- struct ehea_adapter *adapter = dev->dev.driver_data;
|
|
|
+ struct ehea_adapter *adapter = dev_get_drvdata(&dev->dev);
|
|
|
int i;
|
|
|
|
|
|
for (i = 0; i < EHEA_MAX_PORTS; i++)
|