staging: vt6655: fix static position in inline function
This should be "static inline", not "inline static". Reported by checkpatch. Signed-off-by: Guillaume Clement <gclement@baobob.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
b69ee55b4c
commit
5f742c7b98
1 changed files with 2 additions and 2 deletions
|
@ -778,7 +778,7 @@ inline static void EnQueue(PSDevice pDevice, PSRxMgmtPacket pRxMgmtPacket)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
inline static PSRxMgmtPacket DeQueue(PSDevice pDevice)
|
static inline PSRxMgmtPacket DeQueue(PSDevice pDevice)
|
||||||
{
|
{
|
||||||
PSRxMgmtPacket pRxMgmtPacket;
|
PSRxMgmtPacket pRxMgmtPacket;
|
||||||
|
|
||||||
|
@ -800,7 +800,7 @@ void InitRxManagementQueue(PSDevice pDevice);
|
||||||
|
|
||||||
//PLICE_DEBUG<-
|
//PLICE_DEBUG<-
|
||||||
|
|
||||||
inline static bool device_get_ip(PSDevice pInfo) {
|
static inline bool device_get_ip(PSDevice pInfo) {
|
||||||
struct in_device *in_dev = (struct in_device *)pInfo->dev->ip_ptr;
|
struct in_device *in_dev = (struct in_device *)pInfo->dev->ip_ptr;
|
||||||
struct in_ifaddr *ifa;
|
struct in_ifaddr *ifa;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue