1
0

qcacmn: Enhancement of OS abstraction API's

The API's added in qal & qdf for abstracting the
OS calls are inlined and moved to the OS-specific
src directories.

Change-Id: I9c9c2cbba7702c97fbe343ceb63b330c2296084d
Este cometimento está contido em:
Debasis Das
2019-03-04 18:56:54 +05:30
cometido por nshrivas
ascendente 238555bcd8
cometimento 017bc12dc3
11 ficheiros modificados com 759 adições e 11 eliminações

Ver ficheiro

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2014-2018 The Linux Foundation. All rights reserved.
* Copyright (c) 2014-2019 The Linux Foundation. All rights reserved.
*
* Permission to use, copy, modify, and/or distribute this software for
* any purpose with or without fee is hereby granted, provided that the
@@ -26,9 +26,11 @@
/* Include Files */
#include <qdf_types.h>
#include <i_qdf_net_if.h>
struct qdf_net_if;
#ifdef ENHANCED_OS_ABSTRACTION
/**
* qdf_net_if_create_dummy_if() - create dummy interface
* @nif: interface handle
@@ -39,4 +41,11 @@ struct qdf_net_if;
*/
QDF_STATUS
qdf_net_if_create_dummy_if(struct qdf_net_if *nif);
#else
static inline QDF_STATUS
qdf_net_if_create_dummy_if(struct qdf_net_if *nif)
{
return __qdf_net_if_create_dummy_if(nif);
}
#endif
#endif /* __QDF_NET_IF_H */