/* * Copyright (C) ST-Ericsson SA 2010 * * Author: Biju Das for ST-Ericsson * Author: Kumar Sanghavi for ST-Ericsson * Author: Arun Murthy for ST-Ericsson * License terms: GNU General Public License (GPL) version 2 */ #ifndef __SHM_DRIVER_IF_H__ #define __SHM_DRIVER_IF_H__ #include /* forward declaration */ struct shrm_dev; typedef void (*rx_cb)(void *data, unsigned int length); typedef void (*received_msg_handler)(unsigned char l2_header, void *msg_ptr, unsigned int length, struct shrm_dev *shrm); #endif