mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-28 07:51:11 +02:00
CRCInput::set_rc_hw: Fix device check for cs hd2
Origin commit data
------------------
Branch: ni/coolstream
Commit: 5cac45ccb8
Author: Michael Liebmann <tuxcode.bbg@gmail.com>
Date: 2017-02-22 (Wed, 22 Feb 2017)
------------------
No further description and justification available within origin commit message!
------------------
This commit was generated by Migit
This commit is contained in:
@@ -1822,7 +1822,11 @@ void CRCInput::set_rc_hw(ir_protocol_t ir_protocol, unsigned int ir_address)
|
||||
}
|
||||
int fd = -1;
|
||||
for (std::vector<in_dev>::iterator it = indev.begin(); it != indev.end(); ++it) {
|
||||
if ((*it).path == "/dev/input/nevis_ir") {
|
||||
if (((*it).path == "/dev/input/nevis_ir")
|
||||
#ifdef BOXMODEL_CS_HD2
|
||||
|| ((*it).path == "/dev/input/input0")
|
||||
#endif
|
||||
){
|
||||
fd = (*it).fd;
|
||||
break;
|
||||
}
|
||||
|
Reference in New Issue
Block a user