mei: bus: kill mei_cl_ops
since we move all nfc hanling to the mei_phy module we can kill mei_cl_ops Cc: Samuel Ortiz <sameo@linux.intel.com> Signed-off-by: Tomas Winkler <tomas.winkler@intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
be9b720a0c
commit
d4b78c7290
|
@ -328,27 +328,6 @@ struct mei_hw_ops {
|
||||||
|
|
||||||
/* MEI bus API*/
|
/* MEI bus API*/
|
||||||
|
|
||||||
/**
|
|
||||||
* struct mei_cl_ops - MEI CL device ops
|
|
||||||
* This structure allows ME host clients to implement technology
|
|
||||||
* specific operations.
|
|
||||||
*
|
|
||||||
* @enable: Enable an MEI CL device. Some devices require specific
|
|
||||||
* HECI commands to initialize completely.
|
|
||||||
* @disable: Disable an MEI CL device.
|
|
||||||
* @send: Tx hook for the device. This allows ME host clients to trap
|
|
||||||
* the device driver buffers before actually physically
|
|
||||||
* pushing it to the ME.
|
|
||||||
* @recv: Rx hook for the device. This allows ME host clients to trap the
|
|
||||||
* ME buffers before forwarding them to the device driver.
|
|
||||||
*/
|
|
||||||
struct mei_cl_ops {
|
|
||||||
int (*enable)(struct mei_cl_device *device);
|
|
||||||
int (*disable)(struct mei_cl_device *device);
|
|
||||||
int (*send)(struct mei_cl_device *device, u8 *buf, size_t length);
|
|
||||||
int (*recv)(struct mei_cl_device *device, u8 *buf, size_t length);
|
|
||||||
};
|
|
||||||
|
|
||||||
struct mei_cl_device *mei_cl_add_device(struct mei_device *dev,
|
struct mei_cl_device *mei_cl_add_device(struct mei_device *dev,
|
||||||
struct mei_me_client *me_cl,
|
struct mei_me_client *me_cl,
|
||||||
struct mei_cl *cl,
|
struct mei_cl *cl,
|
||||||
|
@ -376,7 +355,6 @@ struct mei_cl *mei_cl_bus_find_cl_by_uuid(struct mei_device *dev, uuid_le uuid);
|
||||||
* @me_cl: me client
|
* @me_cl: me client
|
||||||
* @cl: mei client
|
* @cl: mei client
|
||||||
* @name: device name
|
* @name: device name
|
||||||
* @ops: ME transport ops
|
|
||||||
* @event_work: async work to execute event callback
|
* @event_work: async work to execute event callback
|
||||||
* @event_cb: Drivers register this callback to get asynchronous ME
|
* @event_cb: Drivers register this callback to get asynchronous ME
|
||||||
* events (e.g. Rx buffer pending) notifications.
|
* events (e.g. Rx buffer pending) notifications.
|
||||||
|
@ -391,8 +369,6 @@ struct mei_cl_device {
|
||||||
struct mei_cl *cl;
|
struct mei_cl *cl;
|
||||||
char name[MEI_CL_NAME_SIZE];
|
char name[MEI_CL_NAME_SIZE];
|
||||||
|
|
||||||
const struct mei_cl_ops *ops;
|
|
||||||
|
|
||||||
struct work_struct event_work;
|
struct work_struct event_work;
|
||||||
mei_cl_event_cb_t event_cb;
|
mei_cl_event_cb_t event_cb;
|
||||||
void *event_context;
|
void *event_context;
|
||||||
|
|
Loading…
Reference in New Issue