Merge "libion: open /dev/ion read-only"
This commit is contained in:
commit
74552a9e7b
2 changed files with 2 additions and 2 deletions
|
|
@ -34,7 +34,7 @@
|
||||||
|
|
||||||
int ion_open()
|
int ion_open()
|
||||||
{
|
{
|
||||||
int fd = open("/dev/ion", O_RDWR);
|
int fd = open("/dev/ion", O_RDONLY);
|
||||||
if (fd < 0)
|
if (fd < 0)
|
||||||
ALOGE("open /dev/ion failed!\n");
|
ALOGE("open /dev/ion failed!\n");
|
||||||
return fd;
|
return fd;
|
||||||
|
|
|
||||||
|
|
@ -46,7 +46,7 @@ class Device : public IonAllHeapsTest {
|
||||||
void Device::SetUp()
|
void Device::SetUp()
|
||||||
{
|
{
|
||||||
IonAllHeapsTest::SetUp();
|
IonAllHeapsTest::SetUp();
|
||||||
m_deviceFd = open("/dev/ion-test", O_RDWR);
|
m_deviceFd = open("/dev/ion-test", O_RDONLY);
|
||||||
ASSERT_GE(m_deviceFd, 0);
|
ASSERT_GE(m_deviceFd, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue