On Wed, Mar 14, 2007 at 01:37:55PM -0500, Bret Hughes wrote:

> Woo hoo! I see my device it's id is TKO0001 just like the engr told me 
> it would be.  At the time I had little to no idea what he was talking about.
> 
> On to look at the code and see how that works.

Something like the following should work, if you haven't already got it 
figured:

diff --git a/drivers/serial/8250_pnp.c b/drivers/serial/8250_pnp.c
index d3d6b82..c7b019b 100644
--- a/drivers/serial/8250_pnp.c
+++ b/drivers/serial/8250_pnp.c
@@ -340,6 +340,8 @@ static const struct pnp_device_id pnp_dev_table[] = {
        {       "FUJ02B8",              0 },
        {       "FUJ02B9",              0 },
        {       "FUJ02BC",              0 },
+       /* TouchKO touchscreen */
+       {       "TKO0001",              0 },
        /* Rockwell's (PORALiNK) 33600 INT PNP */
        {       "WCI0003",              0       },
        /* Unkown PnP modems */

and then just make sure that you have CONFIG_8250_PNP enabled. After 
that, it should just appear as a touchscreen. You may still need to 
perform some handshaking in the protocol interaction to get it working, 
but ideally that would be done in the X driver.
-- 
Matthew Garrett | [EMAIL PROTECTED]
-
To unsubscribe from this list: send the line "unsubscribe linux-acpi" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to