diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2018-07-08 12:33:47 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2018-07-09 09:27:34 +0000 |
commit | b0b0c8c60a6072d1b0707f9b9b87650570b35ea3 (patch) | |
tree | fa3f70a9890aa2f45ee15d4c3c99f851c5a74df4 /src/drivers/xgi/common | |
parent | 6c9737b1ac5b71f705350a960dee0e68b9afb440 (diff) |
src/{device,drivers}: Use "foo *bar" instead of "foo* bar"
Change-Id: Ic1c9b1edd8d3206a68854107ddcbc5c51cb487c3
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/27404
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'src/drivers/xgi/common')
-rw-r--r-- | src/drivers/xgi/common/xgi_coreboot.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/drivers/xgi/common/xgi_coreboot.c b/src/drivers/xgi/common/xgi_coreboot.c index 9cd634ce18..47320fda31 100644 --- a/src/drivers/xgi/common/xgi_coreboot.c +++ b/src/drivers/xgi/common/xgi_coreboot.c @@ -130,8 +130,9 @@ int xgifb_probe(struct pci_dev *pdev, struct xgifb_video_info *xgifb_info) hw_info->ulVideoMemorySize = xgifb_info->video_size; - xgifb_info->video_vbase = hw_info->pjVideoMemoryAddress = (void*)(intptr_t)xgifb_info->video_base; - xgifb_info->mmio_vbase = (void*)(intptr_t)xgifb_info->mmio_base; + xgifb_info->video_vbase = hw_info->pjVideoMemoryAddress = + (void *)(intptr_t)xgifb_info->video_base; + xgifb_info->mmio_vbase = (void *)(intptr_t)xgifb_info->mmio_base; dev_info(&pdev->dev, "Framebuffer at 0x%Lx, mapped to 0x%p, size %dk\n", |