rust: phy: use `srctree`-relative links
authorFUJITA Tomonori <fujita.tomonori@gmail.com>
Thu, 25 Jan 2024 01:45:01 +0000 (10:45 +0900)
committerDavid S. Miller <davem@davemloft.net>
Sat, 27 Jan 2024 14:26:48 +0000 (14:26 +0000)
commit1d4046b5714200ad3a20be09843a63c1c1c9dafe
treeb4ab97eb4c8ae10db51cb6efd4f8f03d0a9177d2
parenta70f2588584b635b35e753261f992c91d007d7dd
rust: phy: use `srctree`-relative links

The relative paths like the following are bothersome and don't work
with `O=` builds:

//! C headers: [`include/linux/phy.h`](../../../../../../../include/linux/phy.h).

This updates such links by using the `srctree`-relative link feature
introduced in 6.8-rc1 like:

//! C headers: [`include/linux/phy.h`](srctree/include/linux/phy.h).

Signed-off-by: FUJITA Tomonori <fujita.tomonori@gmail.com>
Reviewed-by: Trevor Gross <tmgross@umich.edu>
Signed-off-by: David S. Miller <davem@davemloft.net>
rust/kernel/net/phy.rs