mirror of
https://github.com/torvalds/linux.git
synced 2026-07-31 19:47:08 +02:00
drm/amdgpu/atombios: drop empty function
This was leftover from when amdgpu was forked from radeon. The function is empty so drop it. Reviewed-by: Harry Wentland <harry.wentland@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
2ed83f2cc4
commit
ba7f8eb7e4
|
|
@ -36,13 +36,6 @@
|
|||
#include "atombios_encoders.h"
|
||||
#include "bif/bif_4_1_d.h"
|
||||
|
||||
static void amdgpu_atombios_lookup_i2c_gpio_quirks(struct amdgpu_device *adev,
|
||||
ATOM_GPIO_I2C_ASSIGMENT *gpio,
|
||||
u8 index)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
static struct amdgpu_i2c_bus_rec amdgpu_atombios_get_bus_rec_for_i2c_gpio(ATOM_GPIO_I2C_ASSIGMENT *gpio)
|
||||
{
|
||||
struct amdgpu_i2c_bus_rec i2c;
|
||||
|
|
@ -108,9 +101,6 @@ struct amdgpu_i2c_bus_rec amdgpu_atombios_lookup_i2c_gpio(struct amdgpu_device *
|
|||
|
||||
gpio = &i2c_info->asGPIO_Info[0];
|
||||
for (i = 0; i < num_indices; i++) {
|
||||
|
||||
amdgpu_atombios_lookup_i2c_gpio_quirks(adev, gpio, i);
|
||||
|
||||
if (gpio->sucI2cId.ucAccess == id) {
|
||||
i2c = amdgpu_atombios_get_bus_rec_for_i2c_gpio(gpio);
|
||||
break;
|
||||
|
|
@ -142,8 +132,6 @@ void amdgpu_atombios_i2c_init(struct amdgpu_device *adev)
|
|||
|
||||
gpio = &i2c_info->asGPIO_Info[0];
|
||||
for (i = 0; i < num_indices; i++) {
|
||||
amdgpu_atombios_lookup_i2c_gpio_quirks(adev, gpio, i);
|
||||
|
||||
i2c = amdgpu_atombios_get_bus_rec_for_i2c_gpio(gpio);
|
||||
|
||||
if (i2c.valid) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user