Documentation/driver-api/i3c/device-driver-api.rst GitHub 원문 ↗

Linux 6.18.37 · Driver API

I3C device driver API

I3C device-side public header와 implementation kernel-doc API source를 연결합니다.

Source pathDocumentation/driver-api/i3c/device-driver-api.rst
Source versionLinux v6.18.37
TranslationDUJINLABS 전문 번역 + 해설

요약·해설과 원문, 전문 번역을 서로 분리했습니다. API 이름, symbol, source path는 원문 표기를 사용합니다.

1. 요약·해설

원문의 핵심 논리와 kernel programming 관점의 보충 설명입니다. 아래의 전문 번역과는 별도로 작성했습니다.

요약과 해설

device-driver-api.rst:1-9

I3C device driver가 사용하는 public declaration과 core implementation API의 kernel-doc 위치를 한 페이지에서 확인합니다.

2. 영어 원문 전체

번역 기준이 된 Linux v6.18.37 원문입니다. 줄 번호는 이 버전의 파일 좌표입니다.

원문 전체 펼치기
1 .. SPDX-License-Identifier: GPL-2.0
2
3 =====================
4 I3C device driver API
5 =====================
6
7 .. kernel-doc:: include/linux/i3c/device.h
8
9 .. kernel-doc:: drivers/i3c/device.c
10

3. 한국어 전문 번역

영어 원문의 문단 순서와 의미를 유지한 전체 번역입니다. 코드, 함수명, symbol과 URL은 원문 표기를 유지합니다.

I3C device driver API

1-9

문서 제목은 `I3C device driver API`입니다. Device-side public declaration의 kernel-doc source는 `include/linux/i3c/device.h`입니다.

.. kernel-doc:: include/linux/i3c/device.h

I3C device implementation API의 kernel-doc source는 `drivers/i3c/device.c`입니다.

.. kernel-doc:: drivers/i3c/device.c
I3C device API source
범위Source path
Device API declarationinclude/linux/i3c/device.h
Device implementationdrivers/i3c/device.c

Public header와 implementation을 구분합니다.