summaryrefslogtreecommitdiff
path: root/drivers/staging/octeon/octeon-ethernet.h
diff options
context:
space:
mode:
authorAybuke Ozdemir <aybuke.147@gmail.com>2015-10-01 16:42:16 +0300
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2015-10-02 12:36:00 +0300
commitec2c398eff3e928ad3932d6b041168bd85b45ff0 (patch)
treefc714c8d81110df774c735b82957037130f524ca /drivers/staging/octeon/octeon-ethernet.h
parent6f6347ef496dbeeacb9937aedb50ed9aa1a20cd1 (diff)
downloadlinux-ec2c398eff3e928ad3932d6b041168bd85b45ff0.tar.xz
Staging: octeon: Use preferred kernel type
This patch "uint*_t" type instead of "u*" type was used. checkpatch.pl issue in octeon driver. Signed-off-by: Aybuke Ozdemir <aybuke.147@gmail.com> Reviewed-by: Arnd Bergmann <arnd@arndb.de> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/octeon/octeon-ethernet.h')
-rw-r--r--drivers/staging/octeon/octeon-ethernet.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/octeon/octeon-ethernet.h b/drivers/staging/octeon/octeon-ethernet.h
index a242c700bc53..67f640f1c668 100644
--- a/drivers/staging/octeon/octeon-ethernet.h
+++ b/drivers/staging/octeon/octeon-ethernet.h
@@ -43,7 +43,7 @@ struct octeon_ethernet {
struct phy_device *phydev;
unsigned int last_link;
/* Last negotiated link state */
- uint64_t link_info;
+ u64 link_info;
/* Called periodically to check link status */
void (*poll)(struct net_device *dev);
struct delayed_work port_periodic_work;