diff options
author | Ladislav Michl <ladis@linux-mips.org> | 2018-01-15 17:04:22 +0100 |
---|---|---|
committer | Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> | 2018-01-15 17:04:22 +0100 |
commit | 7ea46206d1706bffa1b4785fe47a530de4c57597 (patch) | |
tree | 1002761603f2cd74441f89b40643f19e8752d2e1 /include/video | |
parent | de4b74bda8e87a4ed45ebc2c26cc3e2eaae38429 (diff) | |
download | blackbird-op-linux-7ea46206d1706bffa1b4785fe47a530de4c57597.tar.gz blackbird-op-linux-7ea46206d1706bffa1b4785fe47a530de4c57597.zip |
video: udlfb: Do not name private data 'dev'
Variable 'dev' is usually used for 'struct device'. Therefore
rename driver private data to dlfb to avoid confusion once
driver will be using dev_*() logging functions.
Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
Cc: Bernie Thompson <bernie@plugable.com>
Signed-off-by: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
Diffstat (limited to 'include/video')
-rw-r--r-- | include/video/udlfb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/video/udlfb.h b/include/video/udlfb.h index 7b4f567dd1fe..0cabe6b09095 100644 --- a/include/video/udlfb.h +++ b/include/video/udlfb.h @@ -19,7 +19,7 @@ struct dloarea { struct urb_node { struct list_head entry; - struct dlfb_data *dev; + struct dlfb_data *dlfb; struct delayed_work release_urb_work; struct urb *urb; }; |