Remove not needed friends

Change-Id: Idaa643a2ac4f95a0b48322f76dc6048b9989c56e
Signed-off-by: Jablonski, Mateusz <mateusz.jablonski@intel.com>
This commit is contained in:
Jablonski, Mateusz
2020-01-30 11:23:22 +01:00
parent adc3a97503
commit b22bfd410c

View File

@@ -16,8 +16,6 @@
namespace NEO {
class DrmNullDevice : public Drm {
friend Drm;
friend DeviceFactory;
public:
int ioctl(unsigned long request, void *arg) override {
@@ -40,9 +38,9 @@ class DrmNullDevice : public Drm {
}
}
protected:
DrmNullDevice(int fd, RootDeviceEnvironment &rootDeviceEnvironment) : Drm(fd, rootDeviceEnvironment), gpuTimestamp(0){};
protected:
uint64_t gpuTimestamp;
};
} // namespace NEO