We have data for Massage Therapists, Veterinarians, Chiropractors etc..

2008-11-06 Thread crude





Currently in Practice:  Medical Doctors in the US 

788,840 in total <> 17,306 emails

Lots of Medical Doctors in specialties like Orthopedics, Surgery, Radiology, 
Dermatology, Neurology, General Practice etc..

you can sort by many different fields like zip or county

This week's special price =  $395


()()() If you order by the end of the week you can take all the items below for 
fr ee ()()()

--> Marketing List of US Pharma Companies
  47,000 personal emails and names of decision makers

--> Hospitals in the United States
  more than 23k hospital administrators in over 7k hospitals [worth over $300 
alone)

--> American Dentists
  Virtually every dentist in the USA with full contact details

--> US Chiropractor Contact List
  100k Chiropractors offices with full contact data including email, postal 
address, phone and fax

reply by email:  [EMAIL PROTECTED]

  

this offer is only valid until Nov 7, 2008


to adjust your subscription status email to [EMAIL PROTECTED]

___
Linux PCMCIA reimplementation list
http://lists.infradead.org/mailman/listinfo/linux-pcmcia


Re: [PATCH] pata_pcmcia: another memory card support

2008-11-06 Thread Komuro

> > 
> > > + PCMCIA_DEVICE_PROD_ID2("Flash Card", 0x5a362506),
> 
> I don't want to hardcode the size, however I'm not sure if other size have the
> same prod_id2. " 512MB" with the space at the begginning let me hope there is
> some card exists with 1024, 2048, ... or anything else in that place.
> 

OK. You are right.
Thanks!


Best Regards
Komuro

___
Linux PCMCIA reimplementation list
http://lists.infradead.org/mailman/listinfo/linux-pcmcia


Re: [PATCH] pata_pcmcia: another memory card support

2008-11-06 Thread Marc Pignat
Hi!

On Thursday 06 November 2008, Komuro wrote:
...
> Could you post the output of lspcmcia -vv?

Here it is:
armebs3:~# lspcmcia -vv
Socket 0 Bridge:[at91_cf]   (bus ID: at91_cf)
Configuration:  state: on   ready: yes
Voltage: 3.3V Vcc: 3.3V Vpp: 0.0V
Available IRQs: none
Socket 0 Device 0:  [pata_pcmcia]   (bus ID: 0.0)
Configuration:  state: on
Product Name:512MB Flash Card 55LD017-A2 CFCA217I
Identification: manf_id: 0x00bf card_id: 0x0001
function: 4 (fixed disk)
prod_id(1): " 512MB" (0xdc108d0e)
prod_id(2): "Flash Card" (0x5a362506)
prod_id(3): "55LD017-A2" (0xc0ede6dd)
prod_id(4): "CFCA217I" (0x8c1a6afb)
armebs3:~#
> 
> I think it is better to use "PCMCIA_DEVICE_PROD_ID12"
> instead of "PCMCIA_DEVICE_PROD_ID2"
> 
> > +   PCMCIA_DEVICE_PROD_ID2("Flash Card", 0x5a362506),

I don't want to hardcode the size, however I'm not sure if other size have the
same prod_id2. " 512MB" with the space at the begginning let me hope there is
some card exists with 1024, 2048, ... or anything else in that place.

Best regards

Marc

___
Linux PCMCIA reimplementation list
http://lists.infradead.org/mailman/listinfo/linux-pcmcia


Re: [PATCH] pata_pcmcia: another memory card support

2008-11-06 Thread Komuro
Hi,

Could you post the output of lspcmcia -vv?

I think it is better to use "PCMCIA_DEVICE_PROD_ID12"
instead of "PCMCIA_DEVICE_PROD_ID2"

> + PCMCIA_DEVICE_PROD_ID2("Flash Card", 0x5a362506),


Best Regards
Komuro


> Support for Apacer photo steno pro card.
> 
> Signed-off-by: Marc Pignat <[EMAIL PROTECTED]>
> ---
> 
> Hi all!
> 
> Here is a new ID for ide-cs and pata_pcmcia. I tried all the card
> I can find in the labs, only this one was unknown.
> 
> Best regards
> 
> Marc
> 
> 
> 
> diff --git a/drivers/ata/pata_pcmcia.c b/drivers/ata/pata_pcmcia.c
> index 271cb64..64b2e22 100644
> --- a/drivers/ata/pata_pcmcia.c
> +++ b/drivers/ata/pata_pcmcia.c
> @@ -416,6 +416,7 @@ static struct pcmcia_device_id pcmcia_devices[] = {
>   PCMCIA_DEVICE_PROD_ID1("STI Flash", 0xe4a13209),
>   PCMCIA_DEVICE_PROD_ID12("STI", "Flash 5.0", 0xbf2df18d, 0x8cb57a0e),
>   PCMCIA_MFC_DEVICE_PROD_ID12(1, "SanDisk", "ConnectPlus", 0x7a954bd9, 
> 0x74be00c6),
> + PCMCIA_DEVICE_PROD_ID2("Flash Card", 0x5a362506),
>   PCMCIA_DEVICE_NULL,
>  };
>  
> diff --git a/drivers/ide/ide-cs.c b/drivers/ide/ide-cs.c
> index cb199c8..f50210f 100644
> --- a/drivers/ide/ide-cs.c
> +++ b/drivers/ide/ide-cs.c
> @@ -444,6 +444,7 @@ static struct pcmcia_device_id ide_ids[] = {
>   PCMCIA_DEVICE_PROD_ID1("STI Flash", 0xe4a13209),
>   PCMCIA_DEVICE_PROD_ID12("STI", "Flash 5.0", 0xbf2df18d, 0x8cb57a0e),
>   PCMCIA_MFC_DEVICE_PROD_ID12(1, "SanDisk", "ConnectPlus", 0x7a954bd9, 
> 0x74be00c6),
> + PCMCIA_DEVICE_PROD_ID2("Flash Card", 0x5a362506),
>   PCMCIA_DEVICE_NULL,
>  };
>  MODULE_DEVICE_TABLE(pcmcia, ide_ids);
> 
> ___
> Linux PCMCIA reimplementation list
> http://lists.infradead.org/mailman/listinfo/linux-pcmcia


-- 
Komuro <[EMAIL PROTECTED]>

___
Linux PCMCIA reimplementation list
http://lists.infradead.org/mailman/listinfo/linux-pcmcia


[PATCH] pata_pcmcia: another memory card support

2008-11-06 Thread Marc Pignat
Support for Apacer photo steno pro card.

Signed-off-by: Marc Pignat <[EMAIL PROTECTED]>
---

Hi all!

Here is a new ID for ide-cs and pata_pcmcia. I tried all the card
I can find in the labs, only this one was unknown.

Best regards

Marc



diff --git a/drivers/ata/pata_pcmcia.c b/drivers/ata/pata_pcmcia.c
index 271cb64..64b2e22 100644
--- a/drivers/ata/pata_pcmcia.c
+++ b/drivers/ata/pata_pcmcia.c
@@ -416,6 +416,7 @@ static struct pcmcia_device_id pcmcia_devices[] = {
PCMCIA_DEVICE_PROD_ID1("STI Flash", 0xe4a13209),
PCMCIA_DEVICE_PROD_ID12("STI", "Flash 5.0", 0xbf2df18d, 0x8cb57a0e),
PCMCIA_MFC_DEVICE_PROD_ID12(1, "SanDisk", "ConnectPlus", 0x7a954bd9, 
0x74be00c6),
+   PCMCIA_DEVICE_PROD_ID2("Flash Card", 0x5a362506),
PCMCIA_DEVICE_NULL,
 };
 
diff --git a/drivers/ide/ide-cs.c b/drivers/ide/ide-cs.c
index cb199c8..f50210f 100644
--- a/drivers/ide/ide-cs.c
+++ b/drivers/ide/ide-cs.c
@@ -444,6 +444,7 @@ static struct pcmcia_device_id ide_ids[] = {
PCMCIA_DEVICE_PROD_ID1("STI Flash", 0xe4a13209),
PCMCIA_DEVICE_PROD_ID12("STI", "Flash 5.0", 0xbf2df18d, 0x8cb57a0e),
PCMCIA_MFC_DEVICE_PROD_ID12(1, "SanDisk", "ConnectPlus", 0x7a954bd9, 
0x74be00c6),
+   PCMCIA_DEVICE_PROD_ID2("Flash Card", 0x5a362506),
PCMCIA_DEVICE_NULL,
 };
 MODULE_DEVICE_TABLE(pcmcia, ide_ids);

___
Linux PCMCIA reimplementation list
http://lists.infradead.org/mailman/listinfo/linux-pcmcia