PNPACPI: remove unnecessary casts of "void *"
Remove unnecessary casts of void pointers. Signed-off-by: Bjorn Helgaas <bjorn.helgaas@hp.com> Acked-by: Adam Belay <abelay@novell.com> Signed-off-by: Len Brown <len.brown@intel.com>
This commit is contained in:
Родитель
4cec086b21
Коммит
4721a4cc88
|
@ -240,8 +240,7 @@ static void pnpacpi_parse_allocated_address_space(struct pnp_resource_table *res
|
|||
static acpi_status pnpacpi_allocated_resource(struct acpi_resource *res,
|
||||
void *data)
|
||||
{
|
||||
struct pnp_resource_table *res_table =
|
||||
(struct pnp_resource_table *)data;
|
||||
struct pnp_resource_table *res_table = data;
|
||||
int i;
|
||||
|
||||
switch (res->type) {
|
||||
|
@ -564,8 +563,7 @@ static acpi_status pnpacpi_option_resource(struct acpi_resource *res,
|
|||
void *data)
|
||||
{
|
||||
int priority = 0;
|
||||
struct acpipnp_parse_option_s *parse_data =
|
||||
(struct acpipnp_parse_option_s *)data;
|
||||
struct acpipnp_parse_option_s *parse_data = data;
|
||||
struct pnp_dev *dev = parse_data->dev;
|
||||
struct pnp_option *option = parse_data->option;
|
||||
|
||||
|
@ -703,7 +701,7 @@ static int pnpacpi_supported_resource(struct acpi_resource *res)
|
|||
static acpi_status pnpacpi_count_resources(struct acpi_resource *res,
|
||||
void *data)
|
||||
{
|
||||
int *res_cnt = (int *)data;
|
||||
int *res_cnt = data;
|
||||
|
||||
if (pnpacpi_supported_resource(res))
|
||||
(*res_cnt)++;
|
||||
|
@ -712,7 +710,7 @@ static acpi_status pnpacpi_count_resources(struct acpi_resource *res,
|
|||
|
||||
static acpi_status pnpacpi_type_resources(struct acpi_resource *res, void *data)
|
||||
{
|
||||
struct acpi_resource **resource = (struct acpi_resource **)data;
|
||||
struct acpi_resource **resource = data;
|
||||
|
||||
if (pnpacpi_supported_resource(res)) {
|
||||
(*resource)->type = res->type;
|
||||
|
@ -884,8 +882,7 @@ int pnpacpi_encode_resources(struct pnp_resource_table *res_table,
|
|||
int i = 0;
|
||||
/* pnpacpi_build_resource_template allocates extra mem */
|
||||
int res_cnt = (buffer->length - 1) / sizeof(struct acpi_resource) - 1;
|
||||
struct acpi_resource *resource =
|
||||
(struct acpi_resource *)buffer->pointer;
|
||||
struct acpi_resource *resource = buffer->pointer;
|
||||
int port = 0, irq = 0, dma = 0, mem = 0;
|
||||
|
||||
pnp_dbg("res cnt %d", res_cnt);
|
||||
|
|
Загрузка…
Ссылка в новой задаче