提交 c9fb2cc8 编写于 作者: N Nick Desaulniers 提交者: Ben Skeggs

drm/nouveau/nvif: remove const attribute from nvif_mclass

Similar to commit 0bf8bf50 ("module: Remove
const attribute from alias for MODULE_DEVICE_TABLE")

Fixes many -Wduplicate-decl-specifier warnings due to the combination of
const typeof() of already const variables.
Signed-off-by: NNick Desaulniers <ndesaulniers@google.com>
Reviewed-by: NMatthias Kaehlcke <mka@chromium.org>
Signed-off-by: NBen Skeggs <bskeggs@redhat.com>
上级 da71f0ef
......@@ -78,7 +78,7 @@ struct nvif_mclass {
#define nvif_mclass(o,m) ({ \
struct nvif_object *object = (o); \
struct nvif_sclass *sclass; \
const typeof(m[0]) *mclass = (m); \
typeof(m[0]) *mclass = (m); \
int ret = -ENODEV; \
int cnt, i, j; \
\
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册