Module Name: src Committed By: riastradh Date: Mon Aug 27 07:30:56 UTC 2018
Modified Files: src/sys/external/bsd/drm2/dist/drm/nouveau/include/nvkm/core: device.h Log Message: Fix tpoy. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 \ src/sys/external/bsd/drm2/dist/drm/nouveau/include/nvkm/core/device.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/external/bsd/drm2/dist/drm/nouveau/include/nvkm/core/device.h diff -u src/sys/external/bsd/drm2/dist/drm/nouveau/include/nvkm/core/device.h:1.2 src/sys/external/bsd/drm2/dist/drm/nouveau/include/nvkm/core/device.h:1.3 --- src/sys/external/bsd/drm2/dist/drm/nouveau/include/nvkm/core/device.h:1.2 Mon Aug 27 04:58:30 2018 +++ src/sys/external/bsd/drm2/dist/drm/nouveau/include/nvkm/core/device.h Mon Aug 27 07:30:56 2018 @@ -1,4 +1,4 @@ -/* $NetBSD: device.h,v 1.2 2018/08/27 04:58:30 riastradh Exp $ */ +/* $NetBSD: device.h,v 1.3 2018/08/27 07:30:56 riastradh Exp $ */ #ifndef __NVKM_DEVICE_H__ #define __NVKM_DEVICE_H__ @@ -254,7 +254,7 @@ nvkm_wr16(struct nvkm_device *d, bus_siz return bus_space_write_stream_2(d->mmiot, d->mmioh, a, v); } static inline void -nvkm_wr16(struct nvkm_device *d, bus_size_t a, uint32_t v) +nvkm_wr32(struct nvkm_device *d, bus_size_t a, uint32_t v) { return bus_space_write_stream_4(d->mmiot, d->mmioh, a, v); }