mirror of
https://gitlab.freedesktop.org/mesa/drm.git
synced 2026-01-07 21:50:12 +01:00
crtc: fixup allocation size
This commit is contained in:
parent
10937cf20b
commit
df9cfeff37
1 changed files with 1 additions and 1 deletions
|
|
@ -1952,7 +1952,7 @@ struct drm_property *drm_property_create(struct drm_device *dev, int flags,
|
|||
{
|
||||
struct drm_property *property = NULL;
|
||||
|
||||
property = kzalloc(sizeof(struct drm_output), GFP_KERNEL);
|
||||
property = kzalloc(sizeof(struct drm_property), GFP_KERNEL);
|
||||
if (!property)
|
||||
return NULL;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue