From: kernel test robot <lkp@intel.com>
To: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com>
Cc: oe-kbuild-all@lists.linux.dev, linux-kernel@vger.kernel.org,
Alan Previn <alan.previn.teres.alexis@intel.com>
Subject: drivers/gpu/drm/xe/xe_irq.c:279:3-4: Unneeded semicolon
Date: Mon, 18 Mar 2024 02:00:06 +0800 [thread overview]
Message-ID: <202403180145.fkaEWVrN-lkp@intel.com> (raw)
tree: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
head: 741e9d668aa50c91e4f681511ce0e408d55dd7ce
commit: eb08104f90fc474054211244d668d3fe1d84bccb drm/xe/gsc: add support for GSC proxy interrupt
date: 8 weeks ago
config: alpha-randconfig-r054-20240317 (https://download.01.org/0day-ci/archive/20240318/202403180145.fkaEWVrN-lkp@intel.com/config)
compiler: alpha-linux-gcc (GCC) 13.2.0
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp@intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202403180145.fkaEWVrN-lkp@intel.com/
cocci warnings: (new ones prefixed by >>)
>> drivers/gpu/drm/xe/xe_irq.c:279:3-4: Unneeded semicolon
vim +279 drivers/gpu/drm/xe/xe_irq.c
257
258 static struct xe_gt *pick_engine_gt(struct xe_tile *tile,
259 enum xe_engine_class class,
260 unsigned int instance)
261 {
262 struct xe_device *xe = tile_to_xe(tile);
263
264 if (MEDIA_VER(xe) < 13)
265 return tile->primary_gt;
266
267 switch (class) {
268 case XE_ENGINE_CLASS_VIDEO_DECODE:
269 case XE_ENGINE_CLASS_VIDEO_ENHANCE:
270 return tile->media_gt;
271 case XE_ENGINE_CLASS_OTHER:
272 switch (instance) {
273 case OTHER_MEDIA_GUC_INSTANCE:
274 case OTHER_GSC_INSTANCE:
275 case OTHER_GSC_HECI2_INSTANCE:
276 return tile->media_gt;
277 default:
278 break;
> 279 };
280 fallthrough;
281 default:
282 return tile->primary_gt;
283 }
284 }
285
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
reply other threads:[~2024-03-17 18:00 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=202403180145.fkaEWVrN-lkp@intel.com \
--to=lkp@intel.com \
--cc=alan.previn.teres.alexis@intel.com \
--cc=daniele.ceraolospurio@intel.com \
--cc=linux-kernel@vger.kernel.org \
--cc=oe-kbuild-all@lists.linux.dev \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox