linux-4.4.1/is_device_dma_coherent()(arm64)
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
*参照元 [#r905981a]
#backlinks
*説明 [#f2421e82]
-パス: [[linux-4.4.1/arch/arm64/include/asm/dma-mapping.h]]
-FIXME: これは何?
--説明
**引数 [#g88ba905]
-struct device *dev
--
--[[linux-4.4.1/device]]
**返り値 [#i6dd7aeb]
-bool
--
**参考 [#va1df979]
-dma_coherent を設定するのは arch_setup_dma_ops()
--[[linux-4.4.1/arch_setup_dma_ops()]]
*実装 [#t2568292]
/* do not use this function in a driver */
static inline bool is_device_dma_coherent(struct device ...
{
if (!dev)
return false;
return dev->archdata.dma_coherent;
}
*コメント [#c4b31715]
終了行:
*参照元 [#r905981a]
#backlinks
*説明 [#f2421e82]
-パス: [[linux-4.4.1/arch/arm64/include/asm/dma-mapping.h]]
-FIXME: これは何?
--説明
**引数 [#g88ba905]
-struct device *dev
--
--[[linux-4.4.1/device]]
**返り値 [#i6dd7aeb]
-bool
--
**参考 [#va1df979]
-dma_coherent を設定するのは arch_setup_dma_ops()
--[[linux-4.4.1/arch_setup_dma_ops()]]
*実装 [#t2568292]
/* do not use this function in a driver */
static inline bool is_device_dma_coherent(struct device ...
{
if (!dev)
return false;
return dev->archdata.dma_coherent;
}
*コメント [#c4b31715]
ページ名: