Skip to content

Commit

Permalink
mei: move watchdog prototypes to mei_dev.h from interface.h
Browse files Browse the repository at this point in the history
interface.h contains lower layer functionality

Signed-off-by: Tomas Winkler <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
  • Loading branch information
tomasbw authored and gregkh committed Jan 9, 2013
1 parent 9f81abd commit 37e7d6e
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 20 deletions.
20 changes: 0 additions & 20 deletions drivers/misc/mei/interface.h
Original file line number Diff line number Diff line change
Expand Up @@ -49,24 +49,4 @@ static inline unsigned char mei_data2slots(size_t length)

int mei_count_full_read_slots(struct mei_device *dev);





int mei_wd_send(struct mei_device *dev);
int mei_wd_stop(struct mei_device *dev);
int mei_wd_host_init(struct mei_device *dev);
/*
* mei_watchdog_register - Registering watchdog interface
* once we got connection to the WD Client
* @dev - mei device
*/
void mei_watchdog_register(struct mei_device *dev);
/*
* mei_watchdog_unregister - Unregistering watchdog interface
* @dev - mei device
*/
void mei_watchdog_unregister(struct mei_device *dev);


#endif /* _MEI_INTERFACE_H_ */
17 changes: 17 additions & 0 deletions drivers/misc/mei/mei_dev.h
Original file line number Diff line number Diff line change
Expand Up @@ -371,6 +371,23 @@ int mei_amthif_irq_read_message(struct mei_cl_cb *complete_list,
struct mei_device *dev, struct mei_msg_hdr *mei_hdr);
int mei_amthif_irq_read(struct mei_device *dev, s32 *slots);


int mei_wd_send(struct mei_device *dev);
int mei_wd_stop(struct mei_device *dev);
int mei_wd_host_init(struct mei_device *dev);
/*
* mei_watchdog_register - Registering watchdog interface
* once we got connection to the WD Client
* @dev - mei device
*/
void mei_watchdog_register(struct mei_device *dev);
/*
* mei_watchdog_unregister - Unregistering watchdog interface
* @dev - mei device
*/
void mei_watchdog_unregister(struct mei_device *dev);


/*
* Register Access Function
*/
Expand Down

0 comments on commit 37e7d6e

Please sign in to comment.