From: Tong Zhang Date: Mon, 8 Mar 2021 03:25:28 +0000 (-0500) Subject: atm: fix a typo in the struct description X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=1019d7923d9d4cc878a1a85d4fc2d6619cfe1a6a;p=linux.git atm: fix a typo in the struct description phy_data means private PHY data not date Signed-off-by: Tong Zhang Signed-off-by: David S. Miller --- diff --git a/include/linux/atmdev.h b/include/linux/atmdev.h index 60cd25c0461b8..9b02961d65ee6 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 */