diff options
author | Damien Lespiau <damien.lespiau@intel.com> | 2014-06-09 14:21:08 +0100 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2014-06-10 09:35:42 +1000 |
commit | 10d9b4ed3077df3288daff730173939fdf7d3183 (patch) | |
tree | 89352ba92f6f265998dea9f9d6d51dcb8bdbd2e4 /drivers/gpu/drm/radeon/radeon_bios.c | |
parent | 597486164e4da173be643107b5d15da88f0d689a (diff) | |
download | linux-stable-10d9b4ed3077df3288daff730173939fdf7d3183.tar.gz linux-stable-10d9b4ed3077df3288daff730173939fdf7d3183.tar.bz2 linux-stable-10d9b4ed3077df3288daff730173939fdf7d3183.zip |
drm: Remove spurious ';'
One small step after another, the never-ending crusade towards better
code continues.
Signed-off-by: Damien Lespiau <damien.lespiau@intel.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/radeon/radeon_bios.c')
-rw-r--r-- | drivers/gpu/drm/radeon/radeon_bios.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/radeon/radeon_bios.c b/drivers/gpu/drm/radeon/radeon_bios.c index 9ab30976287d..6a03624fadaa 100644 --- a/drivers/gpu/drm/radeon/radeon_bios.c +++ b/drivers/gpu/drm/radeon/radeon_bios.c @@ -626,7 +626,7 @@ static bool radeon_acpi_vfct_bios(struct radeon_device *rdev) vhdr->DeviceID != rdev->pdev->device) { DRM_INFO("ACPI VFCT table is not for this card\n"); goto out_unmap; - }; + } if (vfct->VBIOSImageOffset + sizeof(VFCT_IMAGE_HEADER) + vhdr->ImageLength > tbl_size) { DRM_ERROR("ACPI VFCT image truncated\n"); |