diff options
author | Claudiu Manoil <claudiu.manoil@freescale.com> | 2013-09-30 12:44:44 +0300 |
---|---|---|
committer | Joe Hershberger <joe.hershberger@ni.com> | 2013-11-22 17:03:16 -0600 |
commit | 18b338fb3486ac91291e1f94561cb47fd0f4aef2 (patch) | |
tree | 5646ade7c8aec43f1afc507a81560231444280a6 /include | |
parent | 5be00a0164892eb695fefa41fb24258072ee2185 (diff) | |
download | u-boot-imx-18b338fb3486ac91291e1f94561cb47fd0f4aef2.zip u-boot-imx-18b338fb3486ac91291e1f94561cb47fd0f4aef2.tar.gz u-boot-imx-18b338fb3486ac91291e1f94561cb47fd0f4aef2.tar.bz2 |
net: tsec: Fix CamelCase issues around BD code
Fix bufPtr and the rxIdx/ txIdx occurrences to
solve the related checkpatch warnings for the
coming patches.
Signed-off-by: Claudiu Manoil <claudiu.manoil@freescale.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/tsec.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/tsec.h b/include/tsec.h index c30aafb..6bc43ef 100644 --- a/include/tsec.h +++ b/include/tsec.h @@ -202,14 +202,14 @@ typedef struct txbd8 { ushort status; /* Status Fields */ ushort length; /* Buffer length */ - uint bufPtr; /* Buffer Pointer */ + uint bufptr; /* Buffer Pointer */ } txbd8_t; typedef struct rxbd8 { ushort status; /* Status Fields */ ushort length; /* Buffer Length */ - uint bufPtr; /* Buffer Pointer */ + uint bufptr; /* Buffer Pointer */ } rxbd8_t; typedef struct rmon_mib |