diff options
| author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-03-12 11:40:15 -0700 | 
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-03-12 11:40:15 -0700 | 
| commit | 192c028b6ac972df25fd624f94a94d038fbdb66c (patch) | |
| tree | 4dd9d13ffd239e4d7c61401f892989742c671fa8 /drivers/gpu/drm/armada/armada_drv.c | |
| parent | ea1990c3796e7550e6f240983f2d1b8e5ecf3891 (diff) | |
| parent | fa389e220254c69ffae0d403eac4146171062d08 (diff) | |
Merge 3.14-rc6 into usb-next
We want the USB fixes in here as well.
Diffstat (limited to 'drivers/gpu/drm/armada/armada_drv.c')
| -rw-r--r-- | drivers/gpu/drm/armada/armada_drv.c | 10 | 
1 files changed, 1 insertions, 9 deletions
diff --git a/drivers/gpu/drm/armada/armada_drv.c b/drivers/gpu/drm/armada/armada_drv.c index acf3a36c9ebc..32982da82694 100644 --- a/drivers/gpu/drm/armada/armada_drv.c +++ b/drivers/gpu/drm/armada/armada_drv.c @@ -68,15 +68,7 @@ void __armada_drm_queue_unref_work(struct drm_device *dev,  {  	struct armada_private *priv = dev->dev_private; -	/* -	 * Yes, we really must jump through these hoops just to store a -	 * _pointer_ to something into the kfifo.  This is utterly insane -	 * and idiotic, because it kfifo requires the _data_ pointed to by -	 * the pointer const, not the pointer itself.  Not only that, but -	 * you have to pass a pointer _to_ the pointer you want stored. -	 */ -	const struct drm_framebuffer *silly_api_alert = fb; -	WARN_ON(!kfifo_put(&priv->fb_unref, &silly_api_alert)); +	WARN_ON(!kfifo_put(&priv->fb_unref, fb));  	schedule_work(&priv->fb_unref_work);  }  | 
