ccid: connect f_fs/aio code INT EP handling with CCID core

Change-Id: I91945574f10ce40628964bcd690dda932da7f911
This commit is contained in:
Harald Welte 2019-05-16 11:08:35 +02:00
parent 63976d4f4e
commit a7da504e49
2 changed files with 2 additions and 0 deletions

View File

@ -60,6 +60,7 @@ struct ccid_slot {
/* CCID operations */
struct ccid_ops {
int (*send_in)(struct ccid_instance *ci, struct msgb *msg);
int (*send_int)(struct ccid_instance *ci, struct msgb *msg);
};
/* An instance of CCID (i.e. a card reader device) */

View File

@ -461,6 +461,7 @@ static int ccid_ops_send_int(struct ccid_instance *ci, struct msgb *msg)
static const struct ccid_ops c_ops = {
.send_in = ccid_ops_send_in,
.send_int = ccid_ops_send_int,
};
static const struct log_info_cat log_info_cat[] = {