Fix inconsistent nomenclature

This commit is contained in:
StrikerX3 2018-12-09 15:52:30 -02:00
parent 0281d2ebff
commit 6398536b97
2 changed files with 4 additions and 4 deletions

View file

@ -62,7 +62,7 @@ void BMIDEChannel::ReadPRDTableAddress(uint32_t *value, uint8_t size) {
void BMIDEChannel::WriteCommand(uint32_t value, uint8_t size) {
m_command = value;
if (value & CmdStartStopBusMaster) {
BeginWork();
StartWork();
}
else {
StopWork();
@ -100,8 +100,8 @@ void BMIDEChannel::WritePRDTableAddress(uint32_t value, uint8_t size) {
//log_spew("BMIDEChannel::WritePRDTableAddress: channel = %d, address = 0x%x\n", m_channel, m_prdTableAddr);
}
void BMIDEChannel::BeginWork() {
//log_spew("BMIDEChannel::BeginWork: Starting operation on channel %d\n", m_channel);
void BMIDEChannel::StartWork() {
//log_spew("BMIDEChannel::StartWork: Starting operation on channel %d\n", m_channel);
m_status |= StActive;

View file

@ -59,7 +59,7 @@ private:
bool m_job_running;
bool m_job_cancel;
void BeginWork();
void StartWork();
void StopWork();
};