mirror of
git://nv-tegra.nvidia.com/linux-nv-oot.git
synced 2025-12-22 17:25:35 +03:00
nvethernet: remove void pointers input arguments
removed void pointers function arguments for osd dma callbacks Bug 2739123 Change-Id: I8430d99c1528a7705d8016e2bfa15a027e82d515 Signed-off-by: rakesh goyal <rgoyal@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/c/linux-nvidia/+/2514923 Reviewed-by: svcacv <svcacv@nvidia.com> Reviewed-by: Nagaraj Annaiah <nannaiah@nvidia.com> Reviewed-by: Bhadram Varka <vbhadram@nvidia.com>
This commit is contained in:
committed by
Revanth Kumar Uppala
parent
01d2b3fe51
commit
3479a84bc7
@@ -52,6 +52,7 @@
|
||||
#include <osi_core.h>
|
||||
#include <osi_dma.h>
|
||||
#include <mmc.h>
|
||||
#include <ivc_core.h>
|
||||
#include "ioctl.h"
|
||||
#ifdef MACSEC_SUPPORT
|
||||
#include "macsec.h"
|
||||
@@ -550,14 +551,15 @@ void ether_assign_osd_ops(struct osi_core_priv_data *osi_core,
|
||||
* @brief osd_ivc_send_cmd - OSD ivc send cmd
|
||||
*
|
||||
* @param[in] priv: OSD private data
|
||||
* @param[in] func: data
|
||||
* @param[in] len: length of the data
|
||||
* @param[in] ivc_buf: ivc_msg_common structure
|
||||
* @param[in] len: length of data
|
||||
* @note
|
||||
* API Group:
|
||||
* - Initialization: Yes
|
||||
* - Run time: Yes
|
||||
* - De-initialization: Yes
|
||||
*/
|
||||
int osd_ivc_send_cmd(void *priv, void *data, unsigned int len);
|
||||
int osd_ivc_send_cmd(void *priv, ivc_msg_common_t *ivc_buf,
|
||||
unsigned int len);
|
||||
void ether_set_rx_mode(struct net_device *dev);
|
||||
#endif /* ETHER_LINUX_H */
|
||||
|
||||
Reference in New Issue
Block a user