Skip to content

Commit

Permalink
PNPACPI: remove unnecessary casts of "void *"
Browse files Browse the repository at this point in the history
Remove unnecessary casts of void pointers.

Signed-off-by: Bjorn Helgaas <[email protected]>
Acked-by: Adam Belay <[email protected]>
Signed-off-by: Len Brown <[email protected]>
  • Loading branch information
Bjorn Helgaas authored and lenb committed Aug 24, 2007
1 parent 4cec086 commit 4721a4c
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions drivers/pnp/pnpacpi/rsparser.c
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down Expand Up @@ -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;

Expand Down Expand Up @@ -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)++;
Expand All @@ -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;
Expand Down Expand Up @@ -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);
Expand Down

0 comments on commit 4721a4c

Please sign in to comment.