diff options
author | Tong Zhang <ztong0001@gmail.com> | 2021-03-07 22:25:28 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2021-03-08 15:16:30 -0800 |
commit | 1019d7923d9d4cc878a1a85d4fc2d6619cfe1a6a (patch) | |
tree | 004936f97d07371704a73916acdf5d914886b35a /include | |
parent | 179d0ba0c454057a65929c46af0d6ad986754781 (diff) |
atm: fix a typo in the struct description
phy_data means private PHY data not date
Signed-off-by: Tong Zhang <ztong0001@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/atmdev.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/atmdev.h b/include/linux/atmdev.h index 60cd25c0461b..9b02961d65ee 100644 --- a/include/linux/atmdev.h +++ b/include/linux/atmdev.h @@ -151,7 +151,7 @@ struct atm_dev { const char *type; /* device type name */ int number; /* device index */ void *dev_data; /* per-device data */ - void *phy_data; /* private PHY date */ + void *phy_data; /* private PHY data */ unsigned long flags; /* device flags (ATM_DF_*) */ struct list_head local; /* local ATM addresses */ struct list_head lecs; /* LECS ATM addresses learned via ILMI */ |