add default mci command structs (to reduce stack use in future)

This commit is contained in:
rjkm
2025-04-23 01:12:29 +02:00
parent 585570521f
commit b99b7d33f8

View File

@@ -964,9 +964,7 @@ struct mci_base {
struct list_head mci_list; struct list_head mci_list;
void *key; void *key;
struct ddb_link *link; struct ddb_link *link;
// struct completion completion;
struct mutex tuner_lock; struct mutex tuner_lock;
// struct mutex mci_lock;
int count; int count;
int type; int type;
}; };
@@ -979,6 +977,9 @@ struct mci {
int demod; int demod;
int tuner; int tuner;
struct mutex lock;
struct mci_command cmd;
struct mci_result result;
struct mci_result signal_info; struct mci_result signal_info;
}; };