drm/msm: Fix undefined "rd_full" link error
rd_full should be defined outside the CONFIG_DEBUG_FS region, in order to be able to link the msm driver even when CONFIG_DEBUG_FS is disabled. Fixes: e515af8d4a6f ("drm/msm: devcoredump should dump MSM_SUBMIT_BO_DUMP buffers") Reported-by: Stephen Rothwell <sfr@canb.auug.org.au> Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org> Reviewed-by: Rob Clark <robdclark@gmail.com> Signed-off-by: Rob Clark <robdclark@chromium.org>
This commit is contained in:
parent
ab723b7a99
commit
20aebe8369
@ -29,8 +29,6 @@
|
|||||||
* or shader programs (if not emitted inline in cmdstream).
|
* or shader programs (if not emitted inline in cmdstream).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifdef CONFIG_DEBUG_FS
|
|
||||||
|
|
||||||
#include <linux/circ_buf.h>
|
#include <linux/circ_buf.h>
|
||||||
#include <linux/debugfs.h>
|
#include <linux/debugfs.h>
|
||||||
#include <linux/kfifo.h>
|
#include <linux/kfifo.h>
|
||||||
@ -47,6 +45,8 @@ bool rd_full = false;
|
|||||||
MODULE_PARM_DESC(rd_full, "If true, $debugfs/.../rd will snapshot all buffer contents");
|
MODULE_PARM_DESC(rd_full, "If true, $debugfs/.../rd will snapshot all buffer contents");
|
||||||
module_param_named(rd_full, rd_full, bool, 0600);
|
module_param_named(rd_full, rd_full, bool, 0600);
|
||||||
|
|
||||||
|
#ifdef CONFIG_DEBUG_FS
|
||||||
|
|
||||||
enum rd_sect_type {
|
enum rd_sect_type {
|
||||||
RD_NONE,
|
RD_NONE,
|
||||||
RD_TEST, /* ascii text */
|
RD_TEST, /* ascii text */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user