atm: use const where reasonable
From: Mitchell Blank Jr <mitch@sfgoth.com> Signed-off-by: Chas Williams <chas@cmf.nrl.navy.mil> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:

committed by
David S. Miller

parent
df3bc8bd8f
commit
61c33e0129
@@ -42,12 +42,12 @@ struct lecdatahdr_8025 {
|
||||
*
|
||||
*/
|
||||
struct lane2_ops {
|
||||
int (*resolve) (struct net_device *dev, u8 *dst_mac, int force,
|
||||
int (*resolve) (struct net_device *dev, const u8 *dst_mac, int force,
|
||||
u8 **tlvs, u32 *sizeoftlvs);
|
||||
int (*associate_req) (struct net_device *dev, u8 *lan_dst,
|
||||
u8 *tlvs, u32 sizeoftlvs);
|
||||
void (*associate_indicator) (struct net_device *dev, u8 *mac_addr,
|
||||
u8 *tlvs, u32 sizeoftlvs);
|
||||
int (*associate_req) (struct net_device *dev, const u8 *lan_dst,
|
||||
const u8 *tlvs, u32 sizeoftlvs);
|
||||
void (*associate_indicator) (struct net_device *dev, const u8 *mac_addr,
|
||||
const u8 *tlvs, u32 sizeoftlvs);
|
||||
};
|
||||
|
||||
/*
|
||||
|
Reference in New Issue
Block a user