From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bjorn Helgaas Subject: [patch 09/37] ISAPNP: pull pnp_add_card_id() out of isapnp_parse_card_id() Date: Wed, 26 Mar 2008 11:11:07 -0600 Message-ID: <20080326171225.139189641@ldl.fc.hp.com> References: <20080326171058.099442579@ldl.fc.hp.com> Return-path: Received: from g1t0026.austin.hp.com ([15.216.28.33]:8864 "EHLO g1t0026.austin.hp.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1759161AbYCZRIi (ORCPT ); Wed, 26 Mar 2008 13:08:38 -0400 Content-Disposition: inline; filename=isapnp-restructure-parse-card-id Sender: linux-acpi-owner@vger.kernel.org List-Id: linux-acpi@vger.kernel.org To: Len Brown Cc: linux-acpi@vger.kernel.org, linux-kernel@vger.kernel.org, Adam Belay , Li Shaohua , Matthieu Castet , Thomas Renninger , Rene Herman , Jaroslav Kysela , Andrew Morton Split the pnp_add_card_id() part from the PNPID conversion part so we can move the initial add_id() into the pnp_card allocation. This makes the PNPID conversion generic so we can use the same one for both devices and cards. Signed-off-by: Bjorn Helgaas Index: work7/drivers/pnp/isapnp/core.c =================================================================== --- work7.orig/drivers/pnp/isapnp/core.c 2008-03-25 14:33:28.000000000 -0600 +++ work7/drivers/pnp/isapnp/core.c 2008-03-25 14:36:04.000000000 -0600 @@ -829,26 +829,6 @@ } /* - * Parse EISA id for ISA PnP card. - */ -static void isapnp_parse_card_id(struct pnp_card *card, unsigned short vendor, - unsigned short device) -{ - char id[8]; - - id[0] = 'A' + ((vendor >> 2) & 0x3f) - 1; - id[1] = 'A' + (((vendor & 3) << 3) | ((vendor >> 13) & 7)) - 1; - id[2] = 'A' + ((vendor >> 8) & 0x1f) - 1; - id[3] = '0' + ((device >> 4) & 0x0f); - id[4] = '0' + (device & 0x0f); - id[5] = '0' + ((device >> 12) & 0x0f); - id[6] = '0' + ((device >> 8) & 0x0f); - id[7] = '\0'; - - pnp_add_card_id(card, id); -} - -/* * Build device list for all present ISA PnP devices. */ static int __init isapnp_build_device_list(void) @@ -856,6 +836,7 @@ int csn; unsigned char header[9], checksum; struct pnp_card *card; + char id[8]; isapnp_wait(); isapnp_key(); @@ -876,8 +857,9 @@ card->number = csn; INIT_LIST_HEAD(&card->devices); - isapnp_parse_card_id(card, (header[1] << 8) | header[0], - (header[3] << 8) | header[2]); + isapnp_to_pnpid((header[1] << 8) | header[0], + (header[3] << 8) | header[2], id); + pnp_add_card_id(card, id); card->serial = (header[7] << 24) | (header[6] << 16) | (header[5] << 8) | header[4]; --