From c1c56b4cfa2819aceecd27c2c5e5ee6d0199f2d1 Mon Sep 17 00:00:00 2001 From: Ahmed ElArabawy Date: Tue, 5 Mar 2019 18:29:54 -0800 Subject: Wifi: Add ether_type to sending offloaded packet This commit is part of the addition of the ether_type as an argument to the legacy hal function to send an offloaded packet. Files in this commit are to upadate the stub function for vendor implementation. Bug: 122487582 Test: Manual Change-Id: Iafa40857bb2299ee1037cd5871bbae8d15093e24 --- libwifi_hal/hal_tool.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/libwifi_hal/hal_tool.cpp b/libwifi_hal/hal_tool.cpp index cbaa4cfdd..aa319476d 100644 --- a/libwifi_hal/hal_tool.cpp +++ b/libwifi_hal/hal_tool.cpp @@ -301,8 +301,9 @@ wifi_error wifi_get_tdls_capabilities_stub( } wifi_error wifi_start_sending_offloaded_packet_stub( - wifi_request_id id, wifi_interface_handle iface, u8* ip_packet, - u16 ip_packet_len, u8* src_mac_addr, u8* dst_mac_addr, u32 period_msec) { + wifi_request_id id, wifi_interface_handle iface, u16 ether_type, + u8* ip_packet, u16 ip_packet_len, u8* src_mac_addr, u8* dst_mac_addr, + u32 period_msec) { return WIFI_ERROR_NOT_SUPPORTED; } -- cgit v1.2.3