projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
42d42e7
)
drm/i915: Fix warning in i915_gem_chipset_flush
author
Ben Widawsky
<
[email protected]
>
Thu, 15 Nov 2012 20:06:09 +0000
(12:06 -0800)
committer
Daniel Vetter
<
[email protected]
>
Wed, 21 Nov 2012 16:45:02 +0000
(17:45 +0100)
drivers/gpu/drm/i915/i915_drv.h:1545:2: warning: '______f' is static but
declared in inline function 'i915_gem_chipset_flush' which is not static
Reported-by: kbuild test robot <
[email protected]
>
dri-devel-Reference: <
50a4d41c
.586VhmwghPuKZbkB%
[email protected]
>
Signed-off-by: Ben Widawsky <
[email protected]
>
Signed-off-by: Daniel Vetter <
[email protected]
>
drivers/gpu/drm/i915/i915_drv.h
patch
|
blob
|
history
diff --git
a/drivers/gpu/drm/i915/i915_drv.h
b/drivers/gpu/drm/i915/i915_drv.h
index 4b83e5f4b32ef693289133f5f454a31fdad68c24..dfb63fb48e2423e6161476a36fcc9a37b9448fd4 100644
(file)
--- a/
drivers/gpu/drm/i915/i915_drv.h
+++ b/
drivers/gpu/drm/i915/i915_drv.h
@@
-1541,7
+1541,7
@@
void i915_gem_init_global_gtt(struct drm_device *dev,
unsigned long end);
int i915_gem_gtt_init(struct drm_device *dev);
void i915_gem_gtt_fini(struct drm_device *dev);
-
extern
inline void i915_gem_chipset_flush(struct drm_device *dev)
+
static
inline void i915_gem_chipset_flush(struct drm_device *dev)
{
if (INTEL_INFO(dev)->gen < 6)
intel_gtt_chipset_flush();