]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
net: niu: use dev_get_platdata()
authorJingoo Han <jg1.han@samsung.com>
Fri, 30 Aug 2013 05:04:17 +0000 (14:04 +0900)
committerDavid S. Miller <davem@davemloft.net>
Fri, 30 Aug 2013 21:43:37 +0000 (17:43 -0400)
Use the wrapper function for retrieving the platform data instead of
accessing dev->platform_data directly. This is a cosmetic change
to make the code simpler and enhance the readability.

Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/sun/niu.c

index fa322409bff33376dbedc59f6921a2337a60eebc..269c08bf399b6a1e3829f91ec6fa0c6da17e6e35 100644 (file)
@@ -9360,7 +9360,7 @@ static ssize_t show_port_phy(struct device *dev,
                             struct device_attribute *attr, char *buf)
 {
        struct platform_device *plat_dev = to_platform_device(dev);
-       struct niu_parent *p = plat_dev->dev.platform_data;
+       struct niu_parent *p = dev_get_platdata(&plat_dev->dev);
        u32 port_phy = p->port_phy;
        char *orig_buf = buf;
        int i;
@@ -9390,7 +9390,7 @@ static ssize_t show_plat_type(struct device *dev,
                              struct device_attribute *attr, char *buf)
 {
        struct platform_device *plat_dev = to_platform_device(dev);
-       struct niu_parent *p = plat_dev->dev.platform_data;
+       struct niu_parent *p = dev_get_platdata(&plat_dev->dev);
        const char *type_str;
 
        switch (p->plat_type) {
@@ -9419,7 +9419,7 @@ static ssize_t __show_chan_per_port(struct device *dev,
                                    int rx)
 {
        struct platform_device *plat_dev = to_platform_device(dev);
-       struct niu_parent *p = plat_dev->dev.platform_data;
+       struct niu_parent *p = dev_get_platdata(&plat_dev->dev);
        char *orig_buf = buf;
        u8 *arr;
        int i;
@@ -9452,7 +9452,7 @@ static ssize_t show_num_ports(struct device *dev,
                              struct device_attribute *attr, char *buf)
 {
        struct platform_device *plat_dev = to_platform_device(dev);
-       struct niu_parent *p = plat_dev->dev.platform_data;
+       struct niu_parent *p = dev_get_platdata(&plat_dev->dev);
 
        return sprintf(buf, "%d\n", p->num_ports);
 }