Commit a93218e1 authored by Tomas Winkler's avatar Tomas Winkler Committed by Greg Kroah-Hartman

staging: mei: mei_dev - kill unused members

remove write only/unsed variables
mei_dev.write_hang and mei_io_lis.tdevice_extension
Signed-off-by: default avatarTomas Winkler <tomas.winkler@intel.com>
Signed-off-by: default avatarOren Weil <oren.jer.weil@intel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent eb9af0ac
...@@ -39,7 +39,6 @@ void mei_initialize_list(struct mei_io_list *list, struct mei_device *dev) ...@@ -39,7 +39,6 @@ void mei_initialize_list(struct mei_io_list *list, struct mei_device *dev)
/* initialize our queue list */ /* initialize our queue list */
INIT_LIST_HEAD(&list->mei_cb.cb_list); INIT_LIST_HEAD(&list->mei_cb.cb_list);
list->status = 0; list->status = 0;
list->device_extension = dev;
} }
/** /**
...@@ -521,7 +520,6 @@ void mei_host_client_properties(struct mei_device *dev) ...@@ -521,7 +520,6 @@ void mei_host_client_properties(struct mei_device *dev)
* with associated host client * with associated host client
*/ */
bitmap_zero(dev->host_clients_map, MEI_CLIENTS_MAX); bitmap_zero(dev->host_clients_map, MEI_CLIENTS_MAX);
dev->write_hang = -1;
dev->open_handle_count = 0; dev->open_handle_count = 0;
bitmap_set(dev->host_clients_map, 0, 3); bitmap_set(dev->host_clients_map, 0, 3);
dev->mei_state = MEI_ENABLED; dev->mei_state = MEI_ENABLED;
......
...@@ -179,7 +179,6 @@ int mei_write_message(struct mei_device *dev, ...@@ -179,7 +179,6 @@ int mei_write_message(struct mei_device *dev,
if ((dev->me_hw_state & ME_RDY_HRA) != ME_RDY_HRA) if ((dev->me_hw_state & ME_RDY_HRA) != ME_RDY_HRA)
return 0; return 0;
dev->write_hang = 0;
return 1; return 1;
} }
......
...@@ -1192,7 +1192,6 @@ static int mei_irq_thread_write_handler(struct mei_io_list *cmpl_list, ...@@ -1192,7 +1192,6 @@ static int mei_irq_thread_write_handler(struct mei_io_list *cmpl_list,
dev_dbg(&dev->pdev->dev, "host buffer is not empty.\n"); dev_dbg(&dev->pdev->dev, "host buffer is not empty.\n");
return 0; return 0;
} }
dev->write_hang = -1;
*slots = mei_count_empty_write_slots(dev); *slots = mei_count_empty_write_slots(dev);
/* complete all waiting for write CB */ /* complete all waiting for write CB */
dev_dbg(&dev->pdev->dev, "complete all waiting for write cb.\n"); dev_dbg(&dev->pdev->dev, "complete all waiting for write cb.\n");
......
...@@ -169,7 +169,6 @@ struct mei_cl { ...@@ -169,7 +169,6 @@ struct mei_cl {
struct mei_io_list { struct mei_io_list {
struct mei_cl_cb mei_cb; struct mei_cl_cb mei_cb;
int status; int status;
struct mei_device *device_extension;
}; };
/* MEI private device struct */ /* MEI private device struct */
...@@ -265,7 +264,6 @@ struct mei_device { ...@@ -265,7 +264,6 @@ struct mei_device {
bool iamthif_flow_control_pending; bool iamthif_flow_control_pending;
bool iamthif_ioctl; bool iamthif_ioctl;
bool iamthif_canceled; bool iamthif_canceled;
u8 write_hang;
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment