Lines Matching refs:device
158 static int32_t Lsm303BindDriver(struct HdfDeviceObject *device)
160 CHECK_NULL_PTR_RETURN_VALUE(device, HDF_ERR_INVALID_PARAM);
169 drvData->device = device;
170 device->service = &drvData->ioService;
176 static int32_t Lsm303InitDriver(struct HdfDeviceObject *device)
181 CHECK_NULL_PTR_RETURN_VALUE(device, HDF_ERR_INVALID_PARAM);
182 struct Lsm303DrvData *drvData = (struct Lsm303DrvData *)device->service;
191 drvData->sensorCfg = MagneticCreateCfgData(device->property);
214 static void Lsm303ReleaseDriver(struct HdfDeviceObject *device)
216 CHECK_NULL_PTR_RETURN(device);
218 struct Lsm303DrvData *drvData = (struct Lsm303DrvData *)device->service;