Merge branch 'drm-patches' of master.kernel.org:/pub/scm/linux/kernel/git/airlied/drm-2.6
* 'drm-patches' of master.kernel.org:/pub/scm/linux/kernel/git/airlied/drm-2.6: drm: DRM: fix memset size error drm: remove remnants of DRM_COPY_FROM/TO_USER_IOCTL drm: remove second forward decleration of drm device struct.
This commit is contained in:
commit
2658770b2c
|
@ -559,8 +559,6 @@ struct drm_mm {
|
||||||
* a family of cards. There will one drm_device for each card present
|
* a family of cards. There will one drm_device for each card present
|
||||||
* in this family
|
* in this family
|
||||||
*/
|
*/
|
||||||
struct drm_device;
|
|
||||||
|
|
||||||
struct drm_driver {
|
struct drm_driver {
|
||||||
int (*load) (struct drm_device *, unsigned long flags);
|
int (*load) (struct drm_device *, unsigned long flags);
|
||||||
int (*firstopen) (struct drm_device *);
|
int (*firstopen) (struct drm_device *);
|
||||||
|
|
|
@ -272,7 +272,7 @@ int drm_getstats(struct drm_device *dev, void *data,
|
||||||
struct drm_stats *stats = data;
|
struct drm_stats *stats = data;
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
memset(stats, 0, sizeof(stats));
|
memset(stats, 0, sizeof(*stats));
|
||||||
|
|
||||||
mutex_lock(&dev->struct_mutex);
|
mutex_lock(&dev->struct_mutex);
|
||||||
|
|
||||||
|
|
|
@ -62,14 +62,6 @@ static __inline__ int mtrr_del(int reg, unsigned long base, unsigned long size)
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/** For data going into the kernel through the ioctl argument */
|
|
||||||
#define DRM_COPY_FROM_USER_IOCTL(arg1, arg2, arg3) \
|
|
||||||
if ( copy_from_user(&arg1, arg2, arg3) ) \
|
|
||||||
return -EFAULT
|
|
||||||
/** For data going from the kernel through the ioctl argument */
|
|
||||||
#define DRM_COPY_TO_USER_IOCTL(arg1, arg2, arg3) \
|
|
||||||
if ( copy_to_user(arg1, &arg2, arg3) ) \
|
|
||||||
return -EFAULT
|
|
||||||
/** Other copying of data to kernel space */
|
/** Other copying of data to kernel space */
|
||||||
#define DRM_COPY_FROM_USER(arg1, arg2, arg3) \
|
#define DRM_COPY_FROM_USER(arg1, arg2, arg3) \
|
||||||
copy_from_user(arg1, arg2, arg3)
|
copy_from_user(arg1, arg2, arg3)
|
||||||
|
|
|
@ -968,9 +968,6 @@ static int savage_bci_event_wait(struct drm_device *dev, void *data, struct drm_
|
||||||
|
|
||||||
DRM_DEBUG("\n");
|
DRM_DEBUG("\n");
|
||||||
|
|
||||||
DRM_COPY_FROM_USER_IOCTL(event, (drm_savage_event_wait_t __user *) data,
|
|
||||||
sizeof(event));
|
|
||||||
|
|
||||||
UPDATE_EVENT_COUNTER();
|
UPDATE_EVENT_COUNTER();
|
||||||
if (dev_priv->status_ptr)
|
if (dev_priv->status_ptr)
|
||||||
hw_e = dev_priv->status_ptr[1] & 0xffff;
|
hw_e = dev_priv->status_ptr[1] & 0xffff;
|
||||||
|
|
Loading…
Reference in New Issue