projects
/
GitHub
/
moto-9609
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
15ebe6c
)
staging: xgifb: delete redundant casts from mtrr_add() call
author
Aaro Koskinen
<aaro.koskinen@iki.fi>
Sat, 10 Sep 2011 21:29:55 +0000
(
00:29
+0300)
committer
Greg Kroah-Hartman
<gregkh@suse.de>
Mon, 12 Sep 2011 14:52:16 +0000
(16:52 +0200)
Delete redundant casts from mtrr_add() call.
Signed-off-by: Aaro Koskinen <aaro.koskinen@iki.fi>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/xgifb/XGI_main_26.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/staging/xgifb/XGI_main_26.c
b/drivers/staging/xgifb/XGI_main_26.c
index 1bff7f6caa4f1b307761f18e76e6c399f7a2ae86..8c5a6e8a695e7422f3f1c4a18b3cd67222faa5a9 100644
(file)
--- a/
drivers/staging/xgifb/XGI_main_26.c
+++ b/
drivers/staging/xgifb/XGI_main_26.c
@@
-2414,10
+2414,8
@@
static int __devinit xgifb_probe(struct pci_dev *pdev,
fb_alloc_cmap(&fb_info->cmap, 256 , 0);
#ifdef CONFIG_MTRR
- xgi_video_info.mtrr = mtrr_add(
- (unsigned int) xgi_video_info.video_base,
- (unsigned int) xgi_video_info.video_size,
- MTRR_TYPE_WRCOMB, 1);
+ xgi_video_info.mtrr = mtrr_add(xgi_video_info.video_base,
+ xgi_video_info.video_size, MTRR_TYPE_WRCOMB, 1);
if (xgi_video_info.mtrr >= 0)
dev_info(&pdev->dev, "added MTRR\n");
#endif