dcb: fix return type on dcb_setapp()
Incorrect return type on dcb_setapp() this routine returns negative error codes. All call sites of dcb_setapp() assign the return value to an int already so no need to update drivers. Signed-off-by: John Fastabend <john.r.fastabend@intel.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
a364c8cf80
commit
ab6baf980b
@ -28,7 +28,7 @@ struct dcb_app_type {
|
||||
struct list_head list;
|
||||
};
|
||||
|
||||
u8 dcb_setapp(struct net_device *, struct dcb_app *);
|
||||
int dcb_setapp(struct net_device *, struct dcb_app *);
|
||||
u8 dcb_getapp(struct net_device *, struct dcb_app *);
|
||||
int dcb_ieee_setapp(struct net_device *, struct dcb_app *);
|
||||
int dcb_ieee_delapp(struct net_device *, struct dcb_app *);
|
||||
|
Reference in New Issue
Block a user