1 /* 2 * Copyright (c) 2017 The Linux Foundation. All rights reserved. 3 * 4 * Permission to use, copy, modify, and/or distribute this software for 5 * any purpose with or without fee is hereby granted, provided that the 6 * above copyright notice and this permission notice appear in all 7 * copies. 8 * 9 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL 10 * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED 11 * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE 12 * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL 13 * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR 14 * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 15 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 16 * PERFORMANCE OF THIS SOFTWARE. 17 */ 18 /** 19 * DOC: wlan_serialization_rules_i.h 20 * This file defines the prototypes for the rules related data 21 * pertinent to the serialization component. 22 */ 23 #ifndef __WLAN_SERIALIZATION_RULES_I_H 24 #define __WLAN_SERIALIZATION_RULES_I_H 25 26 #include <qdf_types.h> 27 #include <wlan_serialization_api.h> 28 29 /** 30 * wlan_serialization_apply_scan_rules() - apply scan rules callback 31 * @info: rules info structure 32 * @comp_id: component Identifier 33 * 34 * This callback is registered with object manager during initialization and 35 * when serialization request is called by component, this callback handler 36 * applies rules depending on component. 37 * There will be many apply rules callback handlers in future 38 * 39 * Return: boolean 40 */ 41 bool 42 wlan_serialization_apply_scan_rules( 43 union wlan_serialization_rules_info *info, uint8_t comp_id); 44 #endif 45