提交 c4d589be 编写于 作者: T Tomas Winkler 提交者: Greg Kroah-Hartman

mei: rename function mei_hw_init to mei_start

The hw initialization is now done as part of
hw specific code this makes the name mei_hw_init little misleading.

We rename it to mei_start in spirit of already existing
functions mei_stop and mei_reset.
Signed-off-by: NTomas Winkler <tomas.winkler@intel.com>
Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
上级 d0265f12
...@@ -69,13 +69,13 @@ void mei_device_init(struct mei_device *dev) ...@@ -69,13 +69,13 @@ void mei_device_init(struct mei_device *dev)
} }
/** /**
* mei_hw_init - initializes host and fw to start work. * mei_start - initializes host and fw to start work.
* *
* @dev: the device structure * @dev: the device structure
* *
* returns 0 on success, <0 on failure. * returns 0 on success, <0 on failure.
*/ */
int mei_hw_init(struct mei_device *dev) int mei_start(struct mei_device *dev)
{ {
int ret = 0; int ret = 0;
......
...@@ -393,7 +393,7 @@ static inline u32 mei_data2slots(size_t length) ...@@ -393,7 +393,7 @@ static inline u32 mei_data2slots(size_t length)
*/ */
void mei_device_init(struct mei_device *dev); void mei_device_init(struct mei_device *dev);
void mei_reset(struct mei_device *dev, int interrupts); void mei_reset(struct mei_device *dev, int interrupts);
int mei_hw_init(struct mei_device *dev); int mei_start(struct mei_device *dev);
void mei_stop(struct mei_device *dev); void mei_stop(struct mei_device *dev);
/* /*
......
...@@ -184,7 +184,7 @@ static int mei_probe(struct pci_dev *pdev, const struct pci_device_id *ent) ...@@ -184,7 +184,7 @@ static int mei_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
goto disable_msi; goto disable_msi;
} }
if (mei_hw_init(dev)) { if (mei_start(dev)) {
dev_err(&pdev->dev, "init hw failure.\n"); dev_err(&pdev->dev, "init hw failure.\n");
err = -ENODEV; err = -ENODEV;
goto release_irq; goto release_irq;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册