tag 标签: 恒诚科技

相关博文
  • 热度 21
    2012-5-25 13:50
    1167 次阅读|
    0 个评论
    IT4054锂电充电  
  • 热度 19
    2012-5-25 13:42
    1381 次阅读|
    0 个评论
    时钟芯片  
  • 热度 18
    2012-5-25 13:28
    1198 次阅读|
    0 个评论
    600mA降压DC-DC  
  • 热度 28
    2012-5-25 13:01
    1090 次阅读|
    0 个评论
     
  • 热度 20
    2012-4-18 10:34
    2692 次阅读|
    1 个评论
         static int __devexit ft5x0x_ts_remove(struct i2c_client *client)   {       struct ft5x0x_ts_data *ft5x0x_ts = i2c_get_clientdata(client);      #ifdef CONFIG_HAS_EARLYSUSPEND       unregister_early_suspend(ft5x0x_ts-early_suspend);   #endif       free_irq(client-irq, ft5x0x_ts);       input_unregister_device(ft5x0x_ts-input_dev);       kfree(ft5x0x_ts);       cancel_work_sync(ft5x0x_ts-pen_event_work);       destroy_workqueue(ft5x0x_ts-ts_workqueue);       i2c_set_cleintdata(client, NULL);          return 0;   }       static const struct i2c_device_id  ft5x0x_ts_id[] = {       {FT5X0X_NAME, 0}   };   MODULE_DEVICE_TABLE(i2c, ft5x0x_id);      static struct i2c_driver ft5x0x_ts_driver = {       .probe    = ft5x0x_ts_probe,       .remove   = __devexit_p(ft5x0x_ts_remove),       .id_table = ft5x0x_ts_id,       .driver   = {           .name  = FT5X0X_TS,           .owner = THIS_MODULE,       },   };      static int __init ft5x0x_ts_init(void)   {       int ret;          ret = i2c_add_driver(ft5x0x_ts_driver);          return ret;   }      static void __exit ft5x0x_ts_exit(void)   {       i2c_delete_driver(ft5x0x_ts_driver);   }      module_init(ft5x0x_ts_init);   module_exit(ft5x0x_ts_exit);