Re: [PATCH v4 0/4] Don't create Python bytecode when building the kernel

2025-04-25 Thread Akira Yokosawa
Hi Andy, Responding to Mauro's cover-letter of v4 at: https://lore.kernel.org/cover.1745453655.git.mchehab+hua...@kernel.org/ , which did not CC'd to you. On Thu, 24 Apr 2025 08:16:20 +0800, Mauro Carvalho Chehab wrote: > As reported by Andy, the Kernel build system runs kernel-doc script f

Re: [PATCH v3 0/2] Don't create Python bytecode when building the kernel

2025-04-23 Thread Akira Yokosawa
On Wed, 23 Apr 2025 19:31:36 +0300, Andy Shevchenko wrote: > On Wed, Apr 23, 2025 at 06:30:48PM +0900, Akira Yokosawa wrote: >> On Tue, 22 Apr 2025 10:57:33 +0300, Andy Shevchenko wrote: >>> On Mon, Apr 21, 2025 at 10:35:29AM -0600, Jonathan Corbet wrote: >>>

Re: [PATCH v3 0/2] Don't create Python bytecode when building the kernel

2025-04-23 Thread Akira Yokosawa
Hi Andy, On Tue, 22 Apr 2025 10:57:33 +0300, Andy Shevchenko wrote: > On Mon, Apr 21, 2025 at 10:35:29AM -0600, Jonathan Corbet wrote: >> Dmitry Baryshkov writes: [...] >> > Would it be possible to properly support O= and create pyc / pycache >> > inside the object/output dir? >> >> I have to c

Re: [PATCH v2] Fix duplicate C declaration warnings

2024-03-25 Thread Akira Yokosawa
rm_format_info > *drm_format_info(u32 format)". This is an issue found using the latest > version of Sphinx as reported by Akira Yokosawa in message id > 564cbd05-8788-9223-1ecc-59e7fc41b...@gmail.com. That message of mine just pointed out that the Sphinx bug of false duplicate

Re: scripts/kernel-doc does not handle duplicate struct & function names (e.g., in amdgpu)

2023-07-11 Thread Akira Yokosawa
Hi Randy, > [just documenting this for posterity or in case someone wants to fix it.] > > In drivers/gpu/drm/amd/amdgpu/amdgpu_vm.c, one can find both > > struct amdgpu_vm_tlb_seq_cb {...}; > > and > static void amdgpu_vm_tlb_seq_cb(...) > > Of course C has no problem with this, but kernel-doc

[PATCH v2 2/2] media: Adjust column width for pdfdocs

2023-03-06 Thread Akira Yokosawa
The column width specifiers added in commit 8d0e3fc61abd ("media: Add 2-10-10-10 RGB formats") don't suffice for column 1 and too wide for column 2. Adjust them to get a good looking table. Fixes: 8d0e3fc61abd ("media: Add 2-10-10-10 RGB formats") Cc: Tomi Valkei

[PATCH v2 1/2] media: Fix building pdfdocs

2023-03-06 Thread Akira Yokosawa
nx's latex builder. The resulting .tex file causes an error in a later stage of a pdfdocs build. Remove the trailing empty dash lines to fix the issue. Fixes: 8d0e3fc61abd ("media: Add 2-10-10-10 RGB formats") Reported-by: Akira Yokosawa Link: https://lore.kernel.org/r/12250823

Re: [PATCH] media: Fix building pdfdocs

2023-02-27 Thread Akira Yokosawa
Hi Mauro, On Sun, 26 Feb 2023 11:47:44 +0100, Mauro Carvalho Chehab wrote: > Em Sun, 26 Feb 2023 08:39:32 +0900 > Akira Yokosawa escreveu: > >> [+CC: Jon, linux-doc] >> >> On Wed, 8 Feb 2023 10:29:16 +0200, Tomi Valkeinen wrote: >>> Commit 8d0e3fc61abd

Re: [PATCH] media: Fix building pdfdocs

2023-02-25 Thread Akira Yokosawa
where in the > file. > > Remove the trailing empty dash lines, which seems to fix the issue. > > Fixes: 8d0e3fc61abd ("media: Add 2-10-10-10 RGB formats") > Reported-by: Akira Yokosawa Link: https://lore.kernel.org/r/12250823-8445-5854-dfb8-b92c0ff08...@gmail.com/ &

Re: [PATCH] media: Fix building pdfdocs

2023-02-22 Thread Akira Yokosawa
me style seems to work elsewhere in the >>>> file. >>>> >>>> Remove the trailing empty dash lines, which seems to fix the issue. >>>> >>>> Fixes: 8d0e3fc61abd ("media: Add 2-10-10-10 RGB formats") >>>> Reported-by: Akira

Re: [PATCH v3 1/7] media: Add 2-10-10-10 RGB formats

2023-02-09 Thread Akira Yokosawa
On Wed, 8 Feb 2023 09:56:24 +0200, Tomi Valkeinen wrote: > On 08/02/2023 03:53, Akira Yokosawa wrote: [...] >> Tomi, can you remove those extra "-"s I mentioned above? >> >> Hopefully, this can be fixed before the v6.3 merge window. > > This is all black mag

Re: [PATCH] media: Fix building pdfdocs

2023-02-09 Thread Akira Yokosawa
file. > > Remove the trailing empty dash lines, which seems to fix the issue. > > Fixes: 8d0e3fc61abd ("media: Add 2-10-10-10 RGB formats") > Reported-by: Akira Yokosawa > Signed-off-by: Tomi Valkeinen Tested-by: Akira Yokosawa > --- > > Note: the offending p

Re: [PATCH v3 1/7] media: Add 2-10-10-10 RGB formats

2023-02-08 Thread Akira Yokosawa
[+CC: Maruo and Hans, who are listed in the SOB area of offending commit] Hi Tomi, I'm observing build failure of "make pdfdocs" against linux-next due to this change whose commitid is 8d0e3fc61abd. > Add XBGR2101010, ABGR2101010 and BGRA1010102 formats. > > Signed-off-by: Tomi Valkeinen > ---

[PATCH] drm/i915/guc, docs: Fix pdfdocs build error by removing nested grid

2021-09-20 Thread Akira Yokosawa
th this fix: 3377846 3998095 Fixes: 572f2a5cd974 ("drm/i915/guc: Update firmware to v62.0.0") Cc: John Harrison Cc: Michal Wajdeczko Cc: Matthew Brost Cc: Daniele Ceraolo Spurio Cc: Matt Roper Cc: Jonathan Corbet Signed-off-by: Akira Yokosawa --- Hi all, I know ther